1
我試圖創建一個活動,當我點擊瀏覽器中的.mp3鏈接時打開。打開我的Android應用程序時點擊.mp3鏈接
這裏是我的意圖過濾器:
<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="file" />
<data android:scheme="http" />
<data android:host="*" />
<data android:mimeType="application/mp3" />
</intent-filter>
沒有什麼工作。
它不起作用 – Tsunaze 2014-09-27 15:46:28