カメラで撮ったばかりの写真に画像ビューを設定することに興味があります。カメラ アプリケーションは問題なく動作し、SD カードの適切な場所に画像を保存しますが、画像を読み込んで画像ビューに設定しようとすると、空白のままになります。最近撮影した画像のパスを使用する代わりに、既存の画像のパスをハードコーディングしようとしましたが、同じ問題が発生します。他のスレッドを確認しましたが、コードに違いは見られません。
これがカメラ機能です。
private void takePicture(){
Intent imageIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
File imagesFolder = new File(Environment.getExternalStorageDirectory(), "/resources/resources/WI"+job_num);
image_name = username+"_"+date+".png";
File image_file = new File(imagesFolder, image_name);
while(image_file.exists()){
image_name = username+"-"+date+"("+ image_count+").png";
image_count+=1;
image_file = new File(imagesFolder,image_name);
}
image_path = imagesFolder+image_name;
Uri uriSavedImage = Uri.fromFile(image_file);
imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uriSavedImage);
int request_code = 100;
startActivityForResult(imageIntent, request_code);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(resultCode == RESULT_OK){
ImageView thumb = (ImageView) findViewById(R.id.thumbnail);
Bitmap bmp = BitmapFactory.decodeFile(image_path);
thumb.setImageBitmap(bmp);
Toast.makeText(this, "Image Saved", Toast.LENGTH_SHORT).show();
}
else
Toast.makeText(this,"Error Saving Image", Toast.LENGTH_SHORT).show();
}
最後に、ImageView は次のとおりです。
<ImageView
android:id="@+id/thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/camera"
android:layout_marginTop="10dp"
android:contentDescription="@string/picture_thumbnail"/>
何を変更する必要がありますか?ありがとう!