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获取参数:
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。