我尝试在我的意图过滤器中使用以下数据:
<data android:scheme="http" android:host="an.example.i.p" android:pathPrefix="t" />
为什么以下网址没有触发它?
http://an.example.i.p/t/v2.aspx/chase/a.test.auto
答案 0 :(得分:36)
试试android:pathPrefix="/t"
。 IntentFilter
调用Uri#getPath
并将结果字符串传递给PatternMatcher
和Uri#getPath
,并以/
开头。