I'm trying to send an image via bluetooth, i keep getting an error saying Unable to create content to send
The code is as follows:
public void onClick(View v) {
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("image/jpeg");
i.putExtra(Intent.EXTRA_STREAM, Uri.parse("/sdcard/test.jpeg"));
startActivity(Intent.createChooser(i, "Send Image")); // TODO Auto-generated method stub
}
Many Thanks