Как установить растровое изображение для ImageView в main.xml, снятый с камеры?

У меня есть ImageView в main.xml, как установить растровое изображение для imageView в main.xml. Я могу назначить растровое изображение для локального изображения в коде ниже.

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

Ваш ответ на вопрос