1、自定义URI
<activity
android:name=".activity.basic.SchemeActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/title_activity_scheme"
android:screenOrientation="portrait">
<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:host="www.qipaiapp.com"
android:pathPrefix="/outlink"
android:scheme="qipai" />
</intent-filter>
<!--
android:host="Master.hi"
1、浏览器访问:192.168.2.164/master/indexf.html
2、点击android超链接(<a href="qipai://www.qipaiapp.com/outlink?type=120&goods=26">android</a>)
3、在QQ中有效果,部分浏览器支持
-->
</activity>
<