0

我的应用程序适用于 android 2.3.3。但是对于版本 8,android 2.2,当我尝试通过蓝牙发送文件时,它说我没有蓝牙!我有它!

我正在使用这个:

file = new FileSystem(this).saveTemp(onlineConfig);

Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.fromFile(file);

sharingIntent.setType("spacesyntax/onlineconfig");
sharingIntent.setPackage("com.android.bluetooth");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share SpaceSyntaxOnlineConfig Using"));

也许蓝牙的软件包在版本 8 中有所不同?如何在运行时检查 Android 版本?android 8 有哪个蓝牙包?

4

0 回答 0