我希望让我的Andorid App处理此问题中显示的自定义网址:How to implement own URI scheme。
<activity android:name="MyActivity"
android:configChanges="screenSize"
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:scheme="myapp"/>
</intent-filter>
</activity>
我已将myapp:// test等链接添加到PDF文件中,但在Adobe Reader中打开文件并单击该链接时,没有任何反应。
这甚至可能吗?
答案 0 :(得分:2)
Adobe Reader应用程序似乎阻止了未知的URL,因为其他PDF阅读器应用程序(例如Dropbox中的内置PDF查看器)一切正常。