summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2009-11-03 21:09:08 -0800
committerOwen Lin <owenlin@google.com>2009-11-04 01:53:45 -0800
commit46d402ade45b258f4515c42b6940749364557fb3 (patch)
tree2dc8ced4ae80a509d73c0a6de789c9cb4f79505d /res/layout
parent111bf09fd62bd0c714ef2164c77965fb0db05a8e (diff)
downloadLegacyCamera-46d402ade45b258f4515c42b6940749364557fb3.zip
LegacyCamera-46d402ade45b258f4515c42b6940749364557fb3.tar.gz
LegacyCamera-46d402ade45b258f4515c42b6940749364557fb3.tar.bz2
Remove some more code.
Change-Id: I5779a15fcffecd9de28e6e1c24a59d3cf0a523f7
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/cropimage.xml57
1 files changed, 0 insertions, 57 deletions
diff --git a/res/layout/cropimage.xml b/res/layout/cropimage.xml
deleted file mode 100644
index dcb8b72..0000000
--- a/res/layout/cropimage.xml
+++ /dev/null
@@ -1,57 +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.
--->
-
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
-
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="horizontal">
-
- <view class="com.android.camera.CropImageView" android:id="@+id/image"
- android:background="#55000000"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_x="0dip"
- android:layout_y="0dip"
- />
- <RelativeLayout android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:paddingLeft="10dip"
- android:paddingRight="10dip"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true">
- <Button
- android:id="@+id/save"
- android:layout_width="100dip"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:text="@string/crop_save_text"
- />
- <Button
- android:id="@+id/discard"
- android:layout_width="100dip"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:text="@string/crop_discard_text"
- />
- </RelativeLayout>
- </RelativeLayout>
-
-</FrameLayout>