如何在android中通过蓝牙发送图像?

时间:2012-12-04 20:22:27

标签: android bluetooth

在我的应用程序中,我打开我的画廊并选择一张图片,然后在图像视图中显示我的图像,然后我应该通过蓝牙发送它。

这就是我所达到的目标:

Uri selectedImage = data.getData();
String[] filePathColumn = {MediaStore.Images.Media.DATA};

Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null);
cursor.moveToFirst();

int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String filePath = cursor.getString(columnIndex);
cursor.close();
Bitmap yourSelectedImage = BitmapFactory.decodeFile(filePath);
iv.setImageBitmap(yourSelectedImage);

如何通过蓝牙发送?

N.B我已经打开了我的蓝牙,并且还可以通过其他设备发现它。 如果你在我的任务中帮助我,我会感激的=]

0 个答案:

没有答案