2015-02-09 76 views
0

我在我的android應用程序中使用深層鏈接。路徑模式Android intent-filter

我有網頁,其中包含的開始的數字,所以我需要在圖案,點擊此處查看:

<intent-filter android:label="test_label"> 
       <action android:name="android.intent.action.VIEW" /> 
       <category android:name="android.intent.category.DEFAULT" /> 
       <category android:name="android.intent.category.BROWSABLE" /> 

       <data android:scheme="http" android:host="url.com" android:pathPattern="/[0-9]*,.*.html" /> 


      </intent-filter> 

而且我的鏈接:

link.com/245576,example-url-example.html 

有什麼不對? 有可能嗎?

回答

0

起初您將您的意圖限制爲http://url您定義的路徑無效,因爲它沒有RegEx。該路徑可以包含一個通用前綴。你可以檢查完整路徑的意圖。