无法将.db扩展名关联到我的应用

时间:2016-11-16 12:22:00

标签: android android-intent filter

我正在尝试将.db文件扩展名关联到我的应用。

我已将此代码放入我的清单文件中,但android并不建议使用我的应用程序打开/查看/编辑文件(作为资源管理器中的附件或文件)

    <activity
        android:name=".activities.MainActivity"
        android:configChanges="orientation|screenSize"
        android:label="@string/app_name"
        android:theme="@style/Cookie.NoActionBar" >
        <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:mimeType="application/octet-stream"
                android:host="*"
                android:pathPattern=".*\\.db"
                />
        </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:mimeType="application/octet-stream"
                android:host="*"
                android:pathPattern=".*\\.db"
                />
        </intent-filter>
    </activity>
你能帮帮我吗? 谢谢。 SEB

0 个答案:

没有答案