android intent-filter 注册网页链接打开app
Posted 广交有志之士!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android intent-filter 注册网页链接打开app相关的知识,希望对你有一定的参考价值。
如下实现注册m.hao123.com的链接:
<intent-filter>
<category android:name="android.intent.category.BROWSABLE"/>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="https" android:host="m.hao123.com" />
</intent-filter>
以上是关于android intent-filter 注册网页链接打开app的主要内容,如果未能解决你的问题,请参考以下文章