我创建了一个应用程序,它将使用动作发送文件,一小时后我的代码无效。
当它打开其他应用程序时,我收到错误“转移此类内容类型不支持”的shareIt和蓝牙文件iamafile没有发送到...这是我的代码,我尝试了很多代码,但不起作用。请帮忙
File root = new File(Environment.getExternalStorageDirectory(), "/QuizApp/MyAnswer/"+sharedPreferenceUsername +"/"+ editTitle);
Uri uri = Uri.fromFile(root);
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(intent);
顺便说一句,editTitle是一个文件。
答案 0 :(得分:1)
共享以下任何文件(Kotlin):
首先在 xml
文件夹中创建一个名为 res
的文件夹,并创建一个名为 provider_paths.xml
的新XML资源文件。 em>并将以下代码放入其中:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path
name="files"
path="."/>
<external-path
name="external_files"
path="."/>
</paths>
现在转到 manifests
文件夹并打开 AndroidManifest.xml
,然后将以下代码放入<application>
标记内:
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" /> // provider_paths.xml file path in this example
</provider>
现在您将以下代码放入setOnLongClickListener
中:
try {
val file = File("pathOfFile")
if(file.exists()) {
val uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file)
val intent = Intent(Intent.ACTION_SEND)
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
intent.setType("*/*")
intent.putExtra(Intent.EXTRA_STREAM, uri)
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent)
}
} catch (e: java.lang.Exception) {
e.printStackTrace()
toast("Error")
}
我希望这会有用
答案 1 :(得分:0)
我已经为多个视频文件工作了。您可以更改一些行以符合您的需要。
抱歉,它是用kotlin写的,但我认为这是可以理解的。
val sharingIntent = Intent(Intent.ACTION_SEND_MULTIPLE)
val files = ArrayList<Uri>()
files.add(<first file URI>)
...
files.add(<n th file URI>)
//here set the type wanted. I think that */* is a bad idea because the app could catch it even if the type is not good
sharingIntent.type = "video/*"
sharingIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, files)
sharingIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
context.startActivity(sharingIntent)