H5页面唤醒App及App之间跳转

来源:互联网 发布:airbnb淘宝优惠券骗局 编辑:程序博客网 时间:2024/06/02 04:45

H5页面跳转到App,其实质是通过uri。
Android配置:
清单文件中对应的Activity标签添加以下标签属性

  <intent-filter>                <action android:name="android.intent.action.VIEW" />                <category android:name="android.intent.category.DEFAULT"/>                <category android:name="android.intent.category.BROWSABLE" />                <data                    android:scheme="myscheme"                    android:host="myhost"                    android:path="/wakeApp"                    />            </intent-filter>

h5链接url:myscheme://myhost/wakeApp

<a  href="myscheme://myhost/wakeApp" /> 打开App获取更多信息 </a>

Activity获取参数: