从网页(包括app中webview)打开APP

Posted 我的小侯子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从网页(包括app中webview)打开APP相关的知识,希望对你有一定的参考价值。

只需要在需要打开的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" />
       <!-- scheme是必须的,其他的不必须 -->
       <data
            android:scheme="xiaohouzi"
            android:host="hou"
            android:sspPrefix="/123"
            android:port=""
          />
</intent-filter>

html页面中需要超链接地址

<a href="xiaohouzi://hou/123">点击打开应用</a>

这样点击打开应用时就会跳到注册了的activity

以上是关于从网页(包括app中webview)打开APP的主要内容,如果未能解决你的问题,请参考以下文章

大量安卓APP离奇闪退,竟然是Webview的锅!Google已经更新最新解决方案!

从 React Native App 中的 WebView 打开动态链接

WebView仿原生app页面切换效果

网页打开android app怎么传参数

用hbuilder开发app怎么从webview中跳出新页面

app自动化测试---webview 元素定位选取(app中H5页面元素定位)