我在 AndroidManifest.xml 文件中使用 <intent-filter> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <data android:scheme="file"/> <data android:mimetype="text/plain"/> <data android:mimetype="application/msword"/> <data android:mimetype="application/pdf"/> <data android:mimetype="application/vnd.openxmlformats-officedocument.wordprocessingml.document"/> </intent-filter> 想把我开发的 app 添加到文件打开方式列表中,但是三星和华为手机并没有在打开方式列表中出现我的 app。请问大家有遇到过吗?
1
leegoogle OP 找到了 添加一个 <data android:scheme="content" /> 就解决了
|