最初に描画可能なリソースに設定されている ImageButton があります。アクティビティ中に、画像をユーザーの写真のビットマップに設定したいと考えています。写真の撮影と保存は正しく行われますが、ImageButton の画像は変更されません。
これが私のコードです:
Bitmap bitmap = BitmapFactory.decodeFile(PATH + "/image.jpg");
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 20, stream);
Log.d(TAG, bitmap.toString()); //prints out android.graphics.Bitmap@41d772a8
rearEndImageButton.setImageBitmap(bitmap);