我正在尝试使用我的应用程序通过蓝牙发送文件。
我已经将mime类型更改为asdxasd/asdxa的随机值
该文件具有我需要使用的扩展名,即.sso
当我使用共享 Intent 时,它仅显示蓝牙和gmail选项,但不能从列表中删除gmail选项吗?
在此先多谢!
我正在使用此代码使用 Intent 发送它:
file = new FileSystem(this).saveTemp();
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.fromFile(file);
sharingIntent.setType("test/onlineconfig");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share Config Using"));
最佳答案
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse(picURI);
sharingIntent.setType("image/*");
sharingIntent.setPackage("com.android.bluetooth");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image"));