summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/layout/camera.xml22
1 files changed, 18 insertions, 4 deletions
diff --git a/res/layout/camera.xml b/res/layout/camera.xml
index 9a3a01a86..781ff9ce2 100644
--- a/res/layout/camera.xml
+++ b/res/layout/camera.xml
@@ -13,9 +13,23 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<com.android.camera.ui.CameraRootView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/camera_app_root"
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/camera_root_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
-</com.android.camera.ui.CameraRootView>
+ <com.android.camera.ui.CameraRootView
+ android:id="@+id/camera_photo_root"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+ </com.android.camera.ui.CameraRootView>
+ <com.android.camera.ui.CameraRootView
+ android:id="@+id/camera_video_root"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+ </com.android.camera.ui.CameraRootView>
+ <com.android.camera.ui.CameraRootView
+ android:id="@+id/camera_pano_root"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+ </com.android.camera.ui.CameraRootView>
+</FrameLayout>