谁能告诉我如何从 android 中的 URL 打开 android 应用程序。
我正在使用以下方法在 android 中打开应用程序,但它对我不起作用。
<data android:scheme="application"/>
我正在传递 URL“application://[RandomText]”的来源
打开应用程序的方法是否正确?
尝试这个:
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:host="www.put-your-website.com" />
<data android:scheme="https" />
<data android:scheme="http" />
<data android:pathPattern=".*" />
</intent-filter>
阅读有关BroadcastReceiver的信息。应用程序必须注册自己以监听使用 sendBroadcast() 发送的意图。在此之后,用户会看到一个弹出窗口以启动该应用程序。(类似于发送功能,您可以选择使用不同的应用程序发送)