实现h5链接打开Android app

AndroidManifest.xml中设置data属性,data代表数据源,是中最复杂的标签,因为不同的Activity支持的数据来源和类型多种多样,所以需要通过详细的data标签信息来指明。
启动页中加入下列代码属性

  <activity
            android:name=".activitys.StartActivity"
            android:configChanges="orientation|keyboard|mcc|mnc|locale|keyboardHidden|uiMode|fontScale"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.customeTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <!--h5跳转app -->
            <!--需要添加下面的intent-filter配置-->
            <intent-filter>
                <data
                    android:host="com.aaa.cn"
                    android:scheme="myscheme" />
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

            </intent-filter>
        </activity>

h5调用Uri uri = Uri.parse(“myscheme://com.aaa.cn”); 才可以匹配

如果在manifest里这样写:

<data android:scheme="something" android:host="project.example.com" />

那么Uri uri = Uri.parse(“something://project.example.com”); 才可以匹配

再如:

<data android:scheme="something" android:host="project.example.com" android:port="80"/>

那么Uri uri = Uri.parse(“something://project.example.com:80”); 才可以匹配

h5传值app接收
例如h5调用`

Uri uri = Uri.parse("myscheme://com.aaa.cn?content=homefragment"); `

android接收

  //接收h5跳转意图
        Uri uri = getIntent().getData();
        if (uri != null) {
            String content= uri.getQueryParameter("content");
            //接收值做具体操作
        }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值