0

Samsung Galaxy s6 を使用して写真を撮り、そこからビットマップを取得するときに問題が発生しました。Galaxy Note や s5、LG G@、Blackberry PRIV などの他のプラットフォームでも正しく動作します。しかし今、Samsung Galaxy s6 で作業していると問題が発生しました。それについていくつかの経験を持っている私に解決策を教えてください。

私のコードは以下です...

    String mCurrentPhotoPath;

private File createImageFile() throws IOException {
        // Create an image file name
        String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
        String imageFileName = "IMG_" + timeStamp + "_";
        File albumF = getAlbumDir();
        if (albumF == null){
            return null;
        }
        File imageF = File.createTempFile(imageFileName, ".jpg", albumF);
        mCurrentPhotoPath = "file:" + imageF.getAbsolutePath();
        return imageF;
    }

    private File getAlbumDir() {
        File storageDir = null;

        if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {

            storageDir = new File(
                    Environment.getExternalStorageDirectory()
                            + "/dcim/"
                            + "test"
            );

            if (storageDir != null) {
                if (!storageDir.mkdirs()) {
                    if (!storageDir.exists()) {
                        Log.d("test", "failed to create directory");
                        CommonFunc.ShowAlertDialog(this,"test", "failed to create directory",null);
                        return null;
                    }
                }
            }

        } else {
            Log.v(getString(R.string.app_name), "External storage is not mounted READ/WRITE.");
            CommonFunc.ShowAlertDialog(this, getString(R.string.app_name), "External storage is not mounted READ/WRITE.", null);
        }

        return storageDir;
    }

    public void showUserImgCameraDialog(View v) {
        Intent takePicture = new Intent(
                MediaStore.ACTION_IMAGE_CAPTURE);
        pFile = null;
        try {
            pFile = createImageFile();
        } catch (IOException e) {
            CommonFunc.ShowToast(this, "creatimagefile issue" + mCurrentPhotoPath);
        }
        if (pFile != null) {
            takePicture.putExtra(MediaStore.EXTRA_OUTPUT,
                    Uri.fromFile(pFile));
            try {
                startActivityForResult(takePicture,
                        100);
            } catch (Exception e) {
                CommonFunc.ShowAlertDialog(this, "test", "No Camera on Device:" + e.toString(), null);
            }
        }
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == 100 && resultCode == RESULT_OK) {//upload user image from camera

            imageView = (ImageView) findViewById(R.id.ivAvatar);
            try {
                try {
                    FileInputStream in = new FileInputStream(pFile);
                    BitmapFactory.Options options = new BitmapFactory.Options();
                    options.inSampleSize = 10;
                    mCurrentPhotoPath = pFile.getAbsolutePath();
                    CommonFunc.ShowToast(this, mCurrentPhotoPath);
                    Bitmap _bmp = BitmapFactory.decodeStream(in, null, options);
                    imageView.setImageBitmap(_bmp);


                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                    CommonFunc.ShowAlertDialog(this, "test", "ImageFileNotFound", null);
                }
            }catch (Exception e){}
        }
        callbackManager.onActivityResult(requestCode, resultCode, data);
    }

onActivity カメラ画面が表示されないのは、Samsung Galaxy S6 で createImageFile パス (mCurrentPhotoPath) が正しくないためだと思います。ただし、このコードは、Samsung Galaxy S6 以外の他のプラットフォームでも機能します。

経験者がいたら教えてください。ありがとう。

ps: このコードで外部ストレージを使用しているためだと思います。ただし、Samsung Galaxy S6 は SD メモリ カードなどの外部ストレージをサポートしていません。*****Samsung Galaxy S6の内部ストレージに一時ファイルを作成する方法を知りたい.*****

4

1 に答える 1