我在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);
答案 0 :(得分:65)
我在理解您的应用程序结构方面遇到了一些麻烦,但以下是我的建议:
将您的setContentView(img);
更改为setContentView(R.id.main);
然后做:
ImageView mImg;
mImg = (ImageView) findViewById(R.id.(your xml img id));
mImg.setImageBitmap(img);