0

アクションバー項目をクリックするとカメラアクティビティが開始され、写真をキャプチャして保存した後、メインアクティビティに表示されるアプリケーションを作成しています。

縦向きのときに MainActivity からカメラを起動し、カメラ アクティビティで横向きに切り替えて写真を撮り、[保存] ボタンをクリックすると、MainActivity に戻りますが、画像は表示されません。メインのアクティビティがリロードされているためだと思いますが、よくわかりません。

向きを変えた後も画像を保持するにはどうすればよいですか。

MainActivity.java

public boolean onOptionsItemSelected(MenuItem item) {
     switch (item.getItemId()) {
     case R.id.menu_camera: 

        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

        // file creation for saving video
        Uri fileUri = getOutputMediaFileUri(MEDIA_TYPE_IMAGE);  
        if (fileUri != null) {
            targetFile = fileUri.getPath();

            // setting file image name
            intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);   

            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);

            startActivityForResult(intent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
        }

        return true;

onActivityResult()

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE) {
        if (resultCode == RESULT_OK) {
            // Image captured and saved to fileUri specified in the Intent
            ImageView imgPicture = (ImageView) findViewById(R.id.imgPicture);
            if (targetFile != null) {
                theFile = targetFile;
                imgPicture.setImageBitmap(BitmapFactory.decodeFile(theFile));
            }

        } else if (resultCode == RESULT_CANCELED) {

        } else {

            Toast.makeText(this, "Your picture could not be saved.", Toast.LENGTH_LONG).show();
        }
    }
}

マニフェスト.xml

 <uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="17" />

<uses-feature
    android:name="android.hardware.camera"
    android:required="true" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.ActionBarTest.MainActivity"
        android:label="@string/app_name" 
        android:launchMode="singleTop">

        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
4

1 に答える 1

0

おそらく、これを使用して、画像がどのように保存されたかを知り、それに基づいてビットマップなどを作成できます

public static int getExifRotation(String imgPath) 
    {
        try 
        {
            ExifInterface exif = new ExifInterface(imgPath);
            String rotationAmount = exif.getAttribute(ExifInterface.TAG_ORIENTATION);
            if (!TextUtils.isEmpty(rotationAmount)) 
            {
                int rotationParam = Integer.parseInt(rotationAmount);
                switch (rotationParam) 
                {
                    case ExifInterface.ORIENTATION_NORMAL:
                        return 0;
                    case ExifInterface.ORIENTATION_ROTATE_90:
                        return 90;
                    case ExifInterface.ORIENTATION_ROTATE_180:
                        return 180;
                    case ExifInterface.ORIENTATION_ROTATE_270:
                        return 270;
                    default:
                        return 0;
                }
            } 
            else 
            {
                return 0;
            }
        }
        catch (Exception ex) 
        {
            return 0;
        }
    }

もチェック

if(bitmap.getWidth() > bitmap.getHeight()){}

幅が高さよりも大きく、行列を回転させるビットマップ コンストラクタを使用するため、画像が横長であるかどうかがわかります。

Matrix matrix = new Matrix();
matrix.postRotate(90); //or whatever
于 2013-03-05T21:49:20.180 に答える