1

写真を撮ってすぐにトリミング画面に移動する Android アプリを作成しています。画像をダウングレードせずに渡す方法がわかりませんでした (つまり、バンドルに入れる場合)。そのため、画像を保存してカードから引き出すことにしました。

現在、camera_view の直後にある新しい crop_view で画像を取り戻そうとすると、アプリは以下のコードに示されている行で Null Pointer Exception をスローします。画像は実際には Pictures/MyApp/IMG_APP.jpg に設定されています。ここで、「Pictures」はデフォルトの画像ディレクトリです。

public Bitmap getImage() {
    Bitmap toReturn = null;

    File root = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
    ImageView IV = (ImageView) findViewById(R.id.crop_view);
    toReturn = BitmapFactory.decodeFile(root+"/MyApp/IMG_APP.jpg");
    IV.setImageBitmap(toReturn);
    return toReturn;// TODO Fix this line. It is breaking here with a null pointer exception.
}

この下に、画像が保存されるコードがあります。実機のSDカードを別アプリで確認して保存されていることを確認しました。

    void onPictureJpeg(byte[] bitmapdata, Camera camera) {
        int i = bitmapdata.length;
        Log.d(TAG, String.format("bytes = %d", i));

        File f = IMGP_Photo_Handler.generateTimeStampPhotoFile();

        try {
            OutputStream outputStream = new BufferedOutputStream(new FileOutputStream(f));
            outputStream.write(bitmapdata);
            outputStream.flush();
            outputStream.close();
            exceptionCaught = false;

        } catch (Exception e) {
            Log.e(TAG, "Error accessing photo output file:" + e.getMessage());
            Toast
              .makeText(IMGP_Camera.this, "Cannot save file. \nPlease mount an external SD Card", Toast.LENGTH_LONG)
              .show();
            exceptionCaught = true;// To get this to not start the next intent if the file save doesn't work.
        }

        if(!exceptionCaught){
        sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED,
                Uri.parse("file://" + Environment.getExternalStorageDirectory())));

        Intent intent = new Intent();
        intent.setClass(IMGP_Camera.this, IMGP_Crop.class);
        intent.putExtra("po","3265695");
        startActivity(intent);
        }
        finish();

    }

そして最後に私のphoto_handler:

    public static Uri photoFileUri = null;

    public static File getPhotoDirectory()  {
        File outputDir = null;
        String externalStorageState = Environment.getExternalStorageState();
        if (externalStorageState.equals(Environment.MEDIA_MOUNTED)) {
            File pictureDir =
                Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
            outputDir = new File(pictureDir, "MyApp");
            if(!outputDir.exists())  {
                if(!outputDir.mkdirs()) {
                    String message = "Failed to create directory:" + outputDir.getAbsolutePath();
                    Log.e(TAG, message);
                    outputDir = null;
                }
            }
        }

        return outputDir;
    }

    public static File generateTimeStampPhotoFile() {
        File photoFile = null;
        File outputDir = getPhotoDirectory();

        if (outputDir != null) {
            String photoFileName =  "IMG_APP.jpg";
            photoFile = new File(outputDir, photoFileName);
        }

        return photoFile;
    }

    public static Uri generateTimeStampPhotoFileUri() {
        photoFileUri = null;
        File photoFile = generateTimeStampPhotoFile() ;

        if (photoFile != null) {
            photoFileUri = Uri.fromFile(photoFile);
        }

        return photoFileUri;
    }

    public static Uri getFile(){
        return photoFileUri;
    }
4

1 に答える 1

1

写真とuriへのパスを余分に渡すことでこれを修正しました:

String photoFileName =  "IMG_TQL.jpg";
photoFile = new File(outputDir, photoFileName);
photoFilePath = photoFile.getAbsolutePath();


Intent intent = new Intent();
intent.setClass(IMGP_Camera.this, IMGP_Crop.class);
intent.putExtra("path", path);
intent.putExtra("uri", uri);
startActivity(intent);
于 2013-05-07T14:26:33.720 に答える