summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xres/layout/capture_module.xml2
-rwxr-xr-xsrc/com/android/camera/CaptureUI.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/layout/capture_module.xml b/res/layout/capture_module.xml
index a9c8f88e5..008f62e16 100755
--- a/res/layout/capture_module.xml
+++ b/res/layout/capture_module.xml
@@ -182,7 +182,7 @@
style="@style/CameraControls"
android:layout_gravity="bottom|center_horizontal"
android:layout_marginBottom="2dip">
- <com.android.camera.ui.RotateImageView android:id="@+id/preview_btn_done"
+ <com.android.camera.ui.RotateImageView android:id="@+id/done_button"
style="@style/ReviewControlIcon"
android:contentDescription="@string/accessibility_review_ok"
android:scaleType="center"
diff --git a/src/com/android/camera/CaptureUI.java b/src/com/android/camera/CaptureUI.java
index 0edc4606e..ccb45e12d 100755
--- a/src/com/android/camera/CaptureUI.java
+++ b/src/com/android/camera/CaptureUI.java
@@ -469,7 +469,7 @@ public class CaptureUI implements FocusOverlayManager.FocusUI,
mCameraControls.setVideoMode(false);
mCancelButton.setVisibility(View.VISIBLE);
mReviewCancelButton = mRootView.findViewById(R.id.preview_btn_cancel);
- mReviewDoneButton = mRootView.findViewById(R.id.preview_btn_done);
+ mReviewDoneButton = mRootView.findViewById(R.id.done_button);
mReviewRetakeButton = mRootView.findViewById(R.id.preview_btn_retake);
mReviewPlayButton = mRootView.findViewById(R.id.preview_play);
mPreviewLayout = (FrameLayout)mRootView.findViewById(R.id.preview_of_intent);