blob: 2acf6f6dfb4ae8a48b790fad8f89f5bf442713e1 [file] [log] [blame]
Suchi Amalapurapu42241e72010-02-08 13:55:07 -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<!--
18 Defines a panel with two buttons and a spacer in between.
19-->
20
21<LinearLayout
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:gravity="bottom"
26 android:paddingTop="4dip"
Suchi Amalapurapu42241e72010-02-08 13:55:07 -080027 android:orientation="horizontal">
28 <Button
29 android:id="@+id/left_button"
Amith Yamasani78545342011-08-22 15:06:57 -070030 android:layout_width="120dip"
Suchi Amalapurapu42241e72010-02-08 13:55:07 -080031 android:layout_weight="0.4"
Amith Yamasanida3cabc2011-08-19 14:12:53 -070032 android:layout_height="wrap_content"
33 android:layout_gravity="center_vertical"/>
Suchi Amalapurapu42241e72010-02-08 13:55:07 -080034 <!-- Spacer -->
35 <View
36 android:id="@+id/buttons_spacer_left"
37 android:layout_width="0dip"
38 android:layout_height="wrap_content"
Dianne Hackbornaef746c2011-05-26 01:04:44 -070039 android:visibility="invisible"
Suchi Amalapurapu42241e72010-02-08 13:55:07 -080040 android:layout_weight="0.2" />
41 <Button
42 android:id="@+id/right_button"
Amith Yamasani78545342011-08-22 15:06:57 -070043 android:layout_width="120dip"
Suchi Amalapurapu42241e72010-02-08 13:55:07 -080044 android:text="@string/cancel"
45 android:layout_weight="0.4"
Amith Yamasanida3cabc2011-08-19 14:12:53 -070046 android:layout_height="wrap_content"
47 android:layout_gravity="center_vertical"/>
Suchi Amalapurapu42241e72010-02-08 13:55:07 -080048</LinearLayout>