在Android服务中点击链接时是否可以捕获。 我知道在服务中捕获onTouch事件是不可能的。但也许WebBrowser的启动可能吗?请帮忙!很重要。 我需要在点击特定链接时启动我的基于Web的应用程序。
答案 0 :(得分:1)
可以使用您在清单
中定义的网址注册活动<activity android:name=".YourActivity">
<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="yourscheme" />
</intent-filter>
</activity>
如果点击了yourscheme://something
的链接