Android意图过滤器匹配路径的结尾

时间:2016-12-16 22:29:33

标签: android android-intent intentfilter

如何匹配网址的结尾?

具体来说,我希望将https://github.com/user/repo/projects与一项活动匹配,将https://github.com/user/repo与另一项活动匹配

我尝试使用路径模式

            <data
                android:host="github.com"
                android:pathPattern=".*projects"
              />

            <data
                android:host="github.com"
                android:pathPattern=".*/projects"
                />

但这与路径不匹配。

编辑 - 我也试过

                <data
                    android:scheme="https"
                    android:host="github.com"
                    android:pathPattern="/.*/.*/projects"
                />

匹配https://github.com/username/repo/projects

0 个答案:

没有答案