我正在尝试设置inapp PayPal MECL交易。
交易完成或失败后,PayPal将重定向到失败的网址或交易完成的网址。
如何抓住该网址以查看交易是否已完成?
答案 0 :(得分:2)
多个选项
意图过滤器:
<activity android:name=".ActivityTest">
<intent-filter><action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="www.mywebsite.com" android:scheme="http"></data>
</intent-filter>
</activity>
如此处所述:https://groups.google.com/forum/#!topic/android-developers/C6qNOBULpCc 官方文档:http://developer.android.com/guide/topics/manifest/intent-filter-element.html
或 WebViewClient :