我想使用我的 Android 应用程序将文件从我的手机发送到其他手机。该文件的类型为“.Xcard”。我想使用android环境提供的默认蓝牙应用程序。也就是说,当我点击发送时,默认应用程序选择器应该打开,然后我应该能够将文件发送到其他设备,但选择设备。我该怎么做?该文件可能为空,也可能不为空
我已经尝试了以下代码,但它不起作用。我收到一条祝酒消息:文件未发送”
f = File.createTempFile("card", ".Xcard", getCacheDir());
FileWriter fw = new FileWriter(f);
BufferedWriter w = new BufferedWriter(fw);
w.write("hello my name is neeraj");
w.close();
Intent i = new Intent();
i.setAction(Intent.ACTION_SEND);
i.setType("*/*");
i.putExtra(i.EXTRA_STREAM, Uri.fromFile(f));
startActivity(i);
请帮帮我,我有点卡住了