DeepLink(浏览器点击链接跳转到app)

在AndroidManifest.xml中设置

添加权限

<uses-permission android:name="android.permission.INTERNET"/>

在Activity中添加intent-filter

            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:scheme="test" android:host="tp" android:pathPrefix="/open"/>
            intent-filter>

scheme,host,pathPrefix可以根据自己需要设置。
浏览器要跳转到此Activity,需要url格式为:test://tp/open
可以在后面添加额外参数,比如:test://tp/open?name=lucy&age=8
Activity不一定是首先打开的Activity。(比如有ActivityB界面,可以在ActivityB中添加上面的intent-filter)

完整AndroidManifest.xml格式如下:


<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test.git.webviewdemo">

    <uses-permission android:name="android.permission.INTERNET"/>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <data android:scheme="test" android:host="tp" android:pathPrefix="/open"/>
            intent-filter>
        activity>
    application>

manifest>

网页代码

<html>
<head>
    <meta name="meta_name" content="helloworld">
head>
<body>
<a href="test://tp?name=miss&age=8">启动应用程序a>//点击无法跳转
<a href="test://tp/open?name=miss&age=8">启动应用程序a>//点击可以跳转
<a href="test://tp.app/open?name=miss&age=8">启动应用程序a>//点击无法跳转
body>
html>

要确保url的链接与test://tp/open匹配才行。
此外不能在浏览器中输入,只能是通过网页点击有效。

Activity的对应操作

        Intent intent = getIntent();
        String action = intent.getAction();
        if(Intent.ACTION_VIEW.equals(action)){
            Uri uri = intent.getData();
            if(uri != null){
                String name = uri.getQueryParameter("name");
                String age= uri.getQueryParameter("age");
                Log.i("view_data", "name:" + name + " age:" + age);
            }
        }

在Activity的onCreate方法中,通过上面代码进行数据的解析,及进一步操作。

一些补充

可以只写scheme

<data android:scheme="test"/>

外部链接是test://格式的都会打开相应app。

对于传递参数

参数key=value格式,可以考虑把value进行encode。
app可以获取以后,进行一下decode。

跳转app时如果没有设置背景可能会黑屏或者白屏一段时间。

解决办法是:可以给跳转的app设置一个背景色。参考:应用启动白屏

你可能感兴趣的:(Android干货分享)