Intent-filter with pathPattern,用于无权限的URI

时间:2016-05-03 02:39:53

标签: android android-intent intentfilter

使用这样的intent-filter时:

 <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:pathPattern="/ipfs/.*"
                android:scheme="fs"/>
 </intent-filter>

然后,对于无权限的URI,将忽略pathPattern - 因此在这种情况下它甚至会匹配fs:/ foo / bar。有没有办法匹配无权限的URI比只有方案更具体?这应该被认为是一个错误吗?

背景:https://github.com/ligi/IPFSDroid/issues/5

0 个答案:

没有答案