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的主要内容,如果未能解决你的问题,请参考以下文章

行为变更 | 了解 Android 12 中的 intent-filter

android 接受开机广播

Android开发 广播监听系统的各种状态

Android:Intent-Filter 和后台网页

android静态intent

android基础:Intents 和 intent-filter 的匹配规则