使用intent过滤器关联文件扩展名

时间:2014-06-10 18:41:50

标签: android file android-intent intentfilter

大家好(我是法国人,请更正我的英文) 我想使用intent-filter来检测.torrent文件。我不知道哑剧型 我试过这样的:

<intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*"/>
<data android:scheme="file" android:host="*"
            android:pathPattern=".*\\.torrent" />
    <data android:scheme="file" android:host="*"
            android:pathPattern=".*\\..*\\.torrent" />
    <data android:scheme="file" android:host="*"
            android:pathPattern=".*\\..*\\..*\\..torrent" />
    <data android:scheme="file" android:host="*"
        android:pathPattern=".*\\..*\\..*\\..*\\.torrent" />
</intent-filter>

<intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
    android:scheme="file"
    android:mimeType="*/*"
    android:host="*"
        android:pathPattern=".*\\.torrent" />
</intent-filter>

这不起作用......:'( 你能帮助我吗 ? :)

0 个答案:

没有答案