在Android中是否可以使用app打开特定网址? 例如,如果在Twitter中youtube链接是共享的,我点击它我会收到意图列表"完成操作"以及选择网络浏览器或YouTube应用程序的能力。
如果用户点击推特www.myapp.com/blog上的推文,可以将我的应用添加到此列表中吗?
我试图添加Manifest
<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:host="myapp.com"
android:path="/blog"
android:scheme="http" />
<data
android:host="www.myapp.com"
android:path="/blog"
android:scheme="http" />
</intent-filter>
但这并没有帮助。