2

私は新しいアプリに取り組んでいます。アプリはカメラと外部ストレージを使用します。私のLG G3ではアプリは正常に動作しますが(AVDエミュレーターでも)、Samsung S5でテストすると、カメラから結果を取得すると、写真を撮った後(onActivityResultメソッドで)次のようになります結果はありません。インテントは null です。写真が撮影され、指定された場所に保存されていることを追加して言いますが、何らかの理由で使用できません。前述のように、まったく同じコードが私の G3 でも問題なく動作します。

また、カメラ テスト アプリをゼロから作成しようとしましたが、G3 とエミュレーターでのみ動作します。

コード:

static final int REQUEST_TAKE_PHOTO = 1;

private void dispatchTakePictureIntent() {
    Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    // Ensure that there's a camera activity to handle the intent
    if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
        // Create the File where the photo should go
        File photoFile = null;
        try {
            photoFile = createImageFile();
        } catch (IOException ex) {
            // Error occurred while creating the File
        }
        // Continue only if the File was successfully created
        if (photoFile != null) {
            takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
                    Uri.fromFile(photoFile));
            startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
        }
    }
}

String mCurrentPhotoPath;    
Bitmap bitmapImg;


private File createImageFile() throws IOException {
    // Create an image file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
    String imageFileName = "JPEG_" + timeStamp + "_";
    File storageDir = Environment.getExternalStoragePublicDirectory(
            Environment.DIRECTORY_PICTURES);
    File image = File.createTempFile(
            imageFileName,  /* prefix */
            ".jpg",         /* suffix */
            storageDir      /* directory */
    );

    // Save a file: path for use with ACTION_VIEW intents
    mCurrentPhotoPath = image.getAbsolutePath();
    return image;
}

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_TAKE_PHOTO && resultCode == RESULT_OK) {
        /*Bundle extras = data.getExtras();
        Bitmap imageBitmap = (Bitmap) extras.get("data");
        mImageView.setImageBitmap(imageBitmap);*/

        bitmapImg = BitmapFactory.decodeFile(mCurrentPhotoPath);
        mImageView.setImageBitmap(bitmapImg);
    }
}


@Override
public void onClick(View view) {
    dispatchTakePictureIntent();
}

また、述べたように、データの意図はサムスンの電話でのみnullです。カメラ、または許可に関して S5 で何か違いはありますか? 私はいくつかの助けを得たいです, それは私にとって非常に重要です. 前もって感謝します。

4

1 に答える 1