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格式如下:

<?xml version="1.0" encoding="utf-8"?>
<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设置一个背景色。参考:应用启动白屏

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值