我正在尝试设置一个intent过滤器,以便在用户点击以下URI时启动我的活动: example.com/pathA/pathB/#pathC/someGUID
所以我将以下XML添加到清单文件中:
<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="example.com"
android:pathPrefix="/pathA/pathB/#pathC"
android:scheme="http" />
</intent-filter>
我认为'#'char正在搞乱,但我试图逃避这个字符而没有运气。有什么想法吗?
更新:当我说“尝试转义”时,我的意思是使用百分比编码(#equals%23)
答案 0 :(得分:14)
Intent过滤器使用UriMatcher来解析URI并确定是否存在匹配。 #
是数字的URI通配符,如UriMatcher中的示例所示。根据{{3}},没有转义序列来转义URI中的#
。因此,您应该使用另一个非保留符号(请注意,*
也被保留为任何文本的通配符)。