h 5ページ起動APP指定ページ及び参照

2856 ワード

開発時にこのようなニーズにぶつかることがあり、第三者のh 5ページを共有し、操作をクリックする際にアプリの指定ページに戻る必要がある場合は、その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");