0
我的Android應用程序應該打開其片段中包含特定字符串的URI('#'符號後面的URI部分)。URI片段中特定字符串的意圖過濾器
例如:
我嘗試以下意圖過濾器,但它不工作:
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="http" android:host="*" android:pathPattern="*foo"/>
</intent-filter>
有什麼不對?