blob: 6673b0d6072db4e080819ce980a10995db8d56b2 [file] [log] [blame]
Jason Monk60a09ea2015-02-26 11:33:22 -05001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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 one button in the same layout as the two button layout.
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"
Jason Monkc27f9e12015-05-12 11:33:34 -040025 android:paddingStart="?android:attr/listPreferredItemPaddingStart"
26 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
Jason Monk60a09ea2015-02-26 11:33:22 -050027 android:gravity="bottom"
Jason Monkbeb171d2015-05-21 15:24:37 -040028 android:paddingTop="8dip"
29 android:paddingBottom="8dip"
Jason Monk60a09ea2015-02-26 11:33:22 -050030 android:orientation="horizontal">
31 <Button
32 android:id="@+id/button"
33 android:layout_width="120dip"
34 android:layout_weight="0.4"
35 android:layout_height="wrap_content"
Alan Viverette26753d72016-04-01 11:12:24 -040036 android:layout_gravity="center_vertical" />
Jason Monk60a09ea2015-02-26 11:33:22 -050037 <Space
38 android:layout_width="0dip"
39 android:layout_height="wrap_content"
40 android:layout_weight="0.2" />
41 <Space
42 android:layout_width="120dip"
43 android:layout_weight="0.4"
44 android:layout_height="wrap_content"
45 android:layout_gravity="center_vertical"/>
46</LinearLayout>