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