2016-11-18 176 views
0

我要打開我的活動時,我的網頁上的鏈接,在用戶點擊,指向一個ITR文件,目前我有:當鏈接打開打開活動

<activity 
    android:name=".ui.Activity" 
    android:label="@string/activity_load" 
    android:theme="@android:style/Theme.Translucent.NoTitleBar"> 
    <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:scheme="http" android:host="www.mywebsite.com" android:pathPattern="*.itr"/> 
    </intent-filter> 
</activity> 

該網頁是在此頁面上打開http://www.mywebsite.com/contents,用戶可以點擊指向itr文件的鏈接。然而我的活動沒有打開,任何提示?

+0

看看[this](http://stackoverflow.com/a/8599921/6950238)答案。 –

+0

請查看http://christopher5106.github.io/mobile/2015/03/26/web-redirection-to-mobile-web-or-app-with-a-modal-box.html – manichandra

回答

2

只需從您的意圖過濾器中的data節點中刪除pathPattern。 路徑模式限制uri遵循應用標準check here