blob: 508fbdbea40d9b19dd382f6eed9ba20c9a7cf2f5 [file] [log] [blame]
The Android Open Source Project792a2202009-03-03 19:32:30 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:orientation="vertical"
Romain Guy5ae9f472010-01-08 15:07:04 -080019 android:layout_width="match_parent"
The Android Open Source Project792a2202009-03-03 19:32:30 -080020 android:layout_height="wrap_content">
21
22 <TextView android:id="@+id/prompt"
Romain Guy5ae9f472010-01-08 15:07:04 -080023 android:layout_width="match_parent" android:layout_height="wrap_content"
The Android Open Source Project792a2202009-03-03 19:32:30 -080024 android:layout_marginLeft="8dip"
25 android:layout_marginTop="8dip"
26 android:layout_marginBottom="8dip"
27 android:drawableLeft="@android:drawable/ic_dialog_alert"
28 android:drawablePadding="8dip">
29 </TextView>
30
31 <RelativeLayout
Romain Guy5ae9f472010-01-08 15:07:04 -080032 android:layout_width="match_parent"
The Android Open Source Project792a2202009-03-03 19:32:30 -080033 android:layout_height="wrap_content"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070034 android:padding="6dip"
The Android Open Source Project792a2202009-03-03 19:32:30 -080035 android:background="#ffffff" >
36
37 <Button android:id="@+id/delete"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070038 android:layout_width="120dip" android:layout_height="wrap_content"
The Android Open Source Project792a2202009-03-03 19:32:30 -080039 android:text="@string/delete_confirm_button_text"
40 android:layout_gravity="center_horizontal"
41 android:layout_alignParentLeft="true" />
42
43 <Button android:id="@+id/cancel"
Marco Nelissen2da51fa2009-07-21 15:12:16 -070044 android:layout_width="120dip" android:layout_height="wrap_content"
The Android Open Source Project792a2202009-03-03 19:32:30 -080045 android:text="@string/cancel"
46 android:layout_alignParentRight="true" />
47
48 </RelativeLayout>
49
50</LinearLayout>
51