diff options
author | Wei Huang <weih@google.com> | 2011-11-03 11:52:53 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-11-03 11:52:53 -0700 |
commit | 530a0dee238412cbdff39bd64295c74f39cc782e (patch) | |
tree | d5369a7d93345ab9c783ccf048a46bbf12fff523 /res/layout | |
parent | 19346d5702f5848167c16d71941e2c48cd17ed05 (diff) | |
parent | da705aa1c8cbaaba105d9bc7799aef95c416a459 (diff) | |
download | LegacyCamera-530a0dee238412cbdff39bd64295c74f39cc782e.zip LegacyCamera-530a0dee238412cbdff39bd64295c74f39cc782e.tar.gz LegacyCamera-530a0dee238412cbdff39bd64295c74f39cc782e.tar.bz2 |
Merge "Fix 5521540: UI Tweaks." into ics-mr1
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/preview_frame_video.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/res/layout/preview_frame_video.xml b/res/layout/preview_frame_video.xml index 992eb46..43d1b5a 100644 --- a/res/layout/preview_frame_video.xml +++ b/res/layout/preview_frame_video.xml @@ -22,11 +22,15 @@ <com.android.camera.PreviewFrameLayout android:id="@+id/frame" android:layout_height="match_parent" android:layout_width="match_parent" - android:layout_centerInParent="true" - android:background="@drawable/border_preview"> + android:layout_centerInParent="true"> <SurfaceView android:id="@+id/camera_preview" - android:layout_height="match_parent" - android:layout_width="match_parent" /> + android:layout_width="match_parent" + android:layout_height="match_parent" /> + <FrameLayout android:id="@+id/preview_border" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:visibility="gone" + android:background="@drawable/ic_snapshot_border" /> <com.android.camera.ui.RotateLayout android:id="@+id/recording_time_rect" style="@style/ViewfinderLableLayout"> |