¿Cómo configurar el mapa de bits a ImageView en main.xml capturado desde la cámara?

Tengo un Imageview en main.xml, cómo configurar el mapa de bits en el imageView en main.xml, puedo asignar un mapa de bits a la vista de imagen local en el siguiente código.

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

Respuestas a la pregunta(1)

Su respuesta a la pregunta