使用 PDF 文件中的自定义 URL 打开 Android 应用

Open Android App with custom URL from PDF file

我希望让我的 Andorid 应用程序处理自定义 URL,如这个问题所示: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>

我已经在 PDF 文件中添加了 link,例如 myapp://test,但是当在 Adob​​e Reader 中打开文件并单击 link 时,什么也没有发生了。

这可能吗?

Adobe Reader 应用程序似乎可以阻止未知的 URL,因为一切都可以与其他 PDF reader 应用程序一起正常工作,例如 Dropbox 中的内置 PDF 查看器。