2016-08-15 61 views
0

我的Android應用程序應該打開其片段中包含特定字符串的URI('#'符號後面的URI部分)。URI片段中特定字符串的意圖過濾器

例如:

http://example.com/page.html#

我嘗試以下意圖過濾器,但它不工作:

<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> 

有什麼不對?

回答

2

我的Android應用程序應該打開其片段中包含特定字符串的URI('#'符號之後的部分URI)。

Android不支持此操作,對不起。片段不被視爲路徑的一部分,您無法過濾片段。