我正在尝试将.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