Wie kann ich die Bitmap auf die von der Kamera aufgenommene ImageView in main.xml einstellen?

Ich habe eine Bildansicht in main.xml, wie man die Bitmap auf die Bildansicht in main.xml einstellt. Ich kann der lokalen Bildansicht im folgenden Code eine Bitmap zuweisen.

//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);

Antworten auf die Frage(2)

Ihre Antwort auf die Frage