目录
scheme协议定义:
scheme是一种页面内跳转协议,通过这个协议可以比较方便的跳转到app某一个页面。
scheme协议的格式:
[scheme]://[host]/[path]?[query]
scheme 代表该Schema 协议名称
host 代表Schema所作用的地址域
path 代表Schema指定的页面
query 要传递的参数
scheme协议的使用:
以Android端为例,使用scheme协议需要在target页面,也就是需要跳转到的页面添加一个新的action-view类型的intent-filter过滤器。并且这个过滤器和该页面下的其他过滤器是同级别的,也就是说不能使用已经定义的其他过滤器作为scheme协议的过滤器。代码如下
<activity android:name=".activitys.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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="app"
android:host="com.app.test"//可以不写
android:path="/SplashActivity"//可以不写
/>
</intent-filter>
</activity>
可以看到,新添加的过滤器中需要同时定义DEFAULT和BROWSABLE两个category标签,而且path标签需要以‘/’开头。
示例:
浏览器通过scheme协议调起app
编写一个简单的html页面并且部署到本地服务器,页面内容如下:
<a href="app://com.app.test">打开app</a>
这里只写了scheme和post两部分,也可以只写scheme或者把path和参数之类的也写上,除了scheme之外其他的内容都不是必须的。如果不包含scheme信息,那么将会导致跳转失效,因为找不到相关协议。
通过其他APP跳转
ntent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("app://com.app.test")); startActivity(intent);