summaryrefslogtreecommitdiffstats
path: root/res/layout/review_image.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/review_image.xml')
-rw-r--r--res/layout/review_image.xml81
1 files changed, 0 insertions, 81 deletions
diff --git a/res/layout/review_image.xml b/res/layout/review_image.xml
deleted file mode 100644
index a27c90f..0000000
--- a/res/layout/review_image.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?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"
- android:background="@drawable/camera_background"
- android:id="@+id/root"
- 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_weight="1">
- <FrameLayout android:id="@+id/frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/border_view_finder">
- <RelativeLayout android:id="@+id/mainPanel"
- android:layout_toLeftOf="@id/button_bar"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <AbsoluteLayout android:id="@+id/slideShowContainer"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.android.camera.ImageViewTouch2 android:id="@+id/image1_slideShow"
- android:background="#00000000"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <com.android.camera.ImageViewTouch2 android:id="@+id/image2_slideShow"
- android:background="#00000000"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </AbsoluteLayout>
- <AbsoluteLayout android:id="@+id/abs"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <com.android.camera.ImageViewTouch2 android:id="@+id/image"
- android:background="#FF000000"
- android:focusableInTouchMode="true"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </AbsoluteLayout>
- <ImageView android:id="@+id/prev_image"
- android:clickable="true"
- android:focusable="false"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:visibility="invisible"
- android:src="@drawable/btn_camera_arrow_left" />
- <ImageView android:id="@+id/next_image"
- android:clickable="true"
- android:focusable="false"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:visibility="invisible"
- android:src="@drawable/btn_camera_arrow_right" />
- </RelativeLayout>
- </FrameLayout>
- </com.android.camera.PreviewFrameLayout>
- <include android:id="@+id/control_bar"
- layout="@layout/review_control" />
-</LinearLayout>
-
-