如何将位图设置为从相机捕获的main.xml中的ImageView?

时间:2010-05-28 12:26:04

标签: android bitmap imageview

我在main.xml中有一个Imageview,如何将位图设置为main.xml中的imageView 我可以在下面的代码中将位图分配给本地图像视图。

//Activates the Camera
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
startActivityForResult(intent, 1);

//  get the bitmap data from the Camera
Bundle extras = data.getExtras();
Bitmap b = (Bitmap) extras.get("data");
int width = b.getWidth();
int height = b.getHeight();
ImageView img = new ImageView(this);
img.setImageBitmap(b);

//Saves the  image
MediaStore.Images.Media.insertImage(getContentResolver(), b, timestamp, timestamp);

// Set the View
setContentView(img);

1 个答案:

答案 0 :(得分:65)

我在理解您的应用程序结构方面遇到了一些麻烦,但以下是我的建议:

将您的setContentView(img);更改为setContentView(R.id.main);

然后做:

ImageView mImg;
mImg = (ImageView) findViewById(R.id.(your xml img id));
mImg.setImageBitmap(img);