我写了一个应用程序,用户点击购买按钮他/她重定向到互联网浏览器(例如:铬)和付款后我想他回到我的应用程序(我的活动)所以我发现我应该使用Intent - 过滤但它对我不起作用!
我在清单中添加了这些代码:
He/she
当我打开这样的网址时:
的myapp:// returnApp状态= 1
我的应用无法打开。
答案 0 :(得分:4)
<intent-filter android:label="@string/app_name" android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https"
android:host="example.page.link" android:path="/payment"/>
<data android:scheme="http"
android:host="example.page.link" android:path="/payment"/>
</intent-filter>