bitmap
を選択して挿入した後、600*600にサイズ変更したいimageview
これはビットマップのimageviewのコードです
ImageView imageView = (ImageView) findViewById(R.id.ivPhoto);
chosenBitmap = BitmapFactory.decodeFile(picturePath);
imageView.setBackgroundColor(0);
imageView.setImageBitmap(chosenBitmap);