0

我想在从android中的默认相机拍摄后直接将图片保存到我的应用程序中。我怎样才能链接到我的应用程序,以便在拍摄照片后它应该要求我是否保存在我的应用程序中。请帮助我我该怎么做。请给我一个类似的代码,以便我能更好地理解。

4

1 回答 1

0

你应该按如下意图启动相机..

Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i, CAMERA_RESULT);

并按如下方式保存您的图像 SDCard..

protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
if (resultCode == RESULT_OK)
{
Get Bundle extras = intent.getExtras();
Bitmap bmp = (Bitmap) extras.get("data");
imv = (ImageView) findViewById(R.id.ReturnedImageView);
imv.setImageBitmap(bmp);
}
}
于 2011-06-17T12:46:44.047 回答