diff options
author | Wu-cheng Li <wuchengli@google.com> | 2010-10-14 18:10:41 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2010-10-18 17:24:57 +0800 |
commit | 9847656580c612bee31b5b1f2256d2cad718644f (patch) | |
tree | e531742a400cea71fd760c5d915e66469ec007ff /res/layout-xlarge/video_camera.xml | |
parent | de751a6a61b0e2806df4b2c5902aaadc7bb1aeb4 (diff) | |
download | LegacyCamera-9847656580c612bee31b5b1f2256d2cad718644f.zip LegacyCamera-9847656580c612bee31b5b1f2256d2cad718644f.tar.gz LegacyCamera-9847656580c612bee31b5b1f2256d2cad718644f.tar.bz2 |
Change recording time position for xlarge layout.
Move recording time to the top right of the camera control
panel.
Change-Id: I8c13d2903f568d479d1aa963c6f0955e3126860c
Diffstat (limited to 'res/layout-xlarge/video_camera.xml')
-rw-r--r-- | res/layout-xlarge/video_camera.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/res/layout-xlarge/video_camera.xml b/res/layout-xlarge/video_camera.xml new file mode 100644 index 0000000..d20a9b3 --- /dev/null +++ b/res/layout-xlarge/video_camera.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2007 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:camera="http://schemas.android.com/apk/res/com.android.camera" + android:id="@+id/video_camera" + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="match_parent"> + <com.android.camera.PreviewFrameLayout android:id="@+id/frame_layout" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginLeft="2dip" + android:layout_weight="1"> + <FrameLayout android:id="@+id/frame" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="@drawable/border_view_finder"> + <SurfaceView android:id="@+id/camera_preview" + android:layout_width="match_parent" + android:layout_height="match_parent"/> + <ImageView android:id="@+id/video_frame" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:visibility="gone" /> + </FrameLayout> + </com.android.camera.PreviewFrameLayout> +</LinearLayout> |