Heyy傢伙經過谷歌掙扎後,我得到了困擾的問題。自定義文件類型關聯的Android上點擊文件
我想打開我的應用程序,點擊電子郵件中的特定文件類型(.tap),並從文件中解析xml數據,並在我的應用程序視圖中顯示。 我已經嘗試了所有的方式,但不幸的是他們都沒有工作。
我試過this解決方案之王。
Heyy傢伙經過谷歌掙扎後,我得到了困擾的問題。自定義文件類型關聯的Android上點擊文件
我想打開我的應用程序,點擊電子郵件中的特定文件類型(.tap),並從文件中解析xml數據,並在我的應用程序視圖中顯示。 我已經嘗試了所有的方式,但不幸的是他們都沒有工作。
我試過this解決方案之王。
希望這將工作
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="application/octet-stream"
android:pathPattern=".*\\.tap" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="*"
android:mimeType="application/tap"
android:pathPattern=".*\\.tap" />
</intent-filter>
謝謝!爲我工作。 –
不錯!爲我工作 –
朋友是你可以得到的點擊微粒文件類型的意圖的唯一途徑。請通過這個http://stackoverflow.com/questions/3760276/android-intent-filter-associate-app-with-file-extension你可以使它工作。 – Piyush
感謝piyush,但沒有人爲我工作。 –