I am trying to create an application to take a picture and then email it. I have spent the last few days messing around with my code and I have tried lots of different things and I still cant get it working. I can take a picture no problem its just when I go to send it my application crashes.Please see my code below:
public class Camera extends Activity implements View.OnClickListener {
ImageButton ib;
Button b;
ImageView iv;
Intent i;
final static int cameraData = 0;
Bitmap bmp;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.photo);
initialize();
InputStream is = getResources().openRawResource(R.drawable.ic_launcher);
bmp = BitmapFactory.decodeStream(is);
}
private void initialize() {
ib = (ImageButton) findViewById(R.id.ibTakePic);
b = (Button) findViewById(R.id.bSendPic);
iv = (ImageView) findViewById(R.id.ivReturnedPic);
b.setOnClickListener(this);
ib.setOnClickListener(this);
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.bSendPic:
String emailaddress[] = { "info@sklep.com", "", };
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.putExtra(Intent.EXTRA_EMAIL, emailaddress);
// getPackageName() is your app package
Uri path = Uri.parse("android.resource://" + getPackageName()
+ "/ + R.drawable.ic_launcher");
emailIntent.putExtra(Intent.EXTRA_STREAM, path); // Replace your
// line
emailIntent.setType("image/png");
startActivity(Intent.createChooser(emailIntent, "Send Mail"));
/*
* emailIntent.setType("image/jpeg");
*
* emailIntent.putExtra(Intent.EXTRA_STREAM, bmp);
*
* emailIntent.setType("message/rfc822");
* startActivity(Intent.createChooser(emailIntent, "Send Mail"));
*/
break;
case R.id.ibTakePic:
i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, cameraData);
break;
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
bmp = (Bitmap) extras.get("data");
bmp = BitmapFactory.decodeResource(getResources(),
R.drawable.ic_launcher);
}
}
}
When I go to send it I get the following error:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SEND (has extras)
Can someone please help me with this? Thanks

bmb = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);– iturki Aug 28 '12 at 9:56