1. 程式人生 > >h5頁面跳轉到安卓app介面

h5頁面跳轉到安卓app介面

開發時有時會碰到這樣的需求,分享到第三方的h5頁面,在點選操作的時候需要跳回APP的指定頁面,這時只需要在該activity下面配置一下相應的scheme host等資訊就可以了


<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT"/>
    <data
        android:host="myapp"
        android:scheme="app"
        android:path="/wakeapp"
        />
</intent-filter>
h5操作 連結格式例如 app://myapp/wakeapp?param=1

客戶端取值
Uri uridata = this.getIntent().getData();
String id=uridata.getQueryParameter("param");