blob: c31f11ad7836bd23d2e44d961e1b430e9724c0a7 [file] [log] [blame]
Alexandre Lisiona3650992013-11-13 14:19:35 -05001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2011 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="wrap_content"
19 android:layout_height="match_parent"
20 android:baselineAligned="false"
21 android:gravity="center_horizontal"
22 android:orientation="horizontal"
23 android:weightSum="4" >
24
25 <Space
26 android:layout_width="0dp"
27 android:layout_height="match_parent"
28 android:layout_weight="1" />
29
30 <LinearLayout
31 android:layout_width="0dp"
32 android:layout_height="match_parent"
33 android:layout_weight="1"
34 android:gravity="center"
35 android:orientation="vertical" >
36
37 <TextView
38 android:id="@+id/picker_title_1"
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
41 android:textAppearance="?android:textAppearanceMedium" />
42
43 <NumberPicker
44 android:id="@+id/number_picker_1"
45 android:layout_width="50dip"
46 android:layout_height="match_parent" />
47 </LinearLayout>
48
49 <LinearLayout
50 android:layout_width="0dp"
51 android:layout_height="match_parent"
52 android:layout_weight="1"
53 android:gravity="center"
54 android:orientation="vertical" >
55
56 <TextView
57 android:id="@+id/picker_title_2"
58 android:layout_width="wrap_content"
59 android:layout_height="wrap_content"
60 android:textAppearance="?android:textAppearanceMedium" />
61
62 <NumberPicker
63 android:id="@+id/number_picker_2"
64 android:layout_width="50dip"
65 android:layout_height="match_parent" />
66 </LinearLayout>
67
68 <Space
69 android:layout_width="0dp"
70 android:layout_height="match_parent"
71 android:layout_weight="1" />
72
73</LinearLayout>