此文章已收入Android偶遇杂症合集(持续更新)
1、Scheme的作用,浏览器唤起APP
常见在手机浏览器打开某个网站,会有个 App 内打开的按钮,点击直接打开APP且跳转到该详情页,用的基本都是Scheme。Scheme的基本使用如下:
<activity android:name=".MainActivity">
<!-- 需要添加下面的intent-filter配置 -->
<intent-filter>
...
<data
android:scheme="myscheme"
android:host="myhost"
android:port="1024"
android:path="/main" />
</intent-filter&