I use Intent to share using bluetooth.
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 using"));
The above code automatically select bluetooth share. Now, it is possible to pass the bluetooth address to that intent so that it will automatically select the device and share it?
it this possible:
sharingIntent.putExtra(Intent.DEVICE_ID, deviceId);
thanks a lot.
