J'ai une Imageview dans main.xml, comment définir le bitmap sur l'imageView dans main.xml je peux attribuer un bitmap à la vue d'image locale dans le code ci-dessous.
//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);
J'ai un peu de mal à comprendre comment vous avez structuré votre application, mais voici mes suggestions:
Changez votre setContentView(img);
en setContentView(R.id.main);
Alors fais:
ImageView mImg;
mImg = (ImageView) findViewById(R.id.(your xml img id));
mImg.setImageBitmap(img);