美文网首页
android 关联某些后缀使用app打开

android 关联某些后缀使用app打开

作者: 久百一 | 来源:发表于2020-03-08 03:15 被阅读0次
<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="content" />
                <data android:mimeType="*/*" />

                <data android:host="*" />

                <data android:pathPattern=".*\\.response" />
                <data android:pathPattern=".*\\..*\\.response" />
                <data android:pathPattern=".*\\..*\\..*\\.response" />
                <data android:pathPattern=".*\\..*\\..*\\..*\\.response" />

                <data android:pathPattern=".*\\.tx" />
                <data android:pathPattern=".*\\..*\\.tx" />
                <data android:pathPattern=".*\\..*\\..*\\.tx" />
                <data android:pathPattern=".*\\..*\\..*\\..*\\.tx" />

            </intent-filter>

相关文章

网友评论

      本文标题:android 关联某些后缀使用app打开

      本文链接:https://www.haomeiwen.com/subject/vixrdhtx.html