大家好(我是法国人,请更正我的英文) 我想使用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>
这不起作用......:'( 你能帮助我吗 ? :)