summaryrefslogtreecommitdiffstats
path: root/res/layout/uninstall_done.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/uninstall_done.xml')
-rwxr-xr-xres/layout/uninstall_done.xml62
1 files changed, 62 insertions, 0 deletions
diff --git a/res/layout/uninstall_done.xml b/res/layout/uninstall_done.xml
new file mode 100755
index 00000000..082d48b5
--- /dev/null
+++ b/res/layout/uninstall_done.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 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.
+-->
+
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+
+ <LinearLayout
+ android:id="@+id/top_box"
+ android:background="@color/title_background"
+ android:layout_width="fill_parent"
+ android:layout_height="65dip"
+ android:layout_alignParentTop="true"/>
+
+ <TextView
+ android:id="@+id/center_text"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:paddingTop="60dip"
+ android:textColor="?android:attr/textColorSecondary"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:layout_below="@id/top_box"/>
+ <!-- OK confirm and cancel buttons. -->
+ <!-- LinearLayout
+ android:background="@color/title_background"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentBottom="true"
+ android:orientation="horizontal" -->
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:background="@color/title_background"
+ android:layout_alignParentBottom="true">
+
+ <Button
+ android:id="@+id/ok_button"
+ android:paddingRight="6dip"
+ android:layout_alignParentRight="true"
+ android:text="@string/ok"
+ android:layout_width="150dip"
+ android:layout_height="wrap_content"/>
+ </RelativeLayout>
+</RelativeLayout>
+
+