xref: /aosp_15_r20/development/samples/ApiDemos/res/layout/controls_material.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1*90c8c64dSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*90c8c64dSAndroid Build Coastguard Worker<!--
3*90c8c64dSAndroid Build Coastguard Worker     Copyright (C) 2016 The Android Open Source Project
4*90c8c64dSAndroid Build Coastguard Worker
5*90c8c64dSAndroid Build Coastguard Worker     Licensed under the Apache License, Version 2.0 (the "License");
6*90c8c64dSAndroid Build Coastguard Worker     you may not use this file except in compliance with the License.
7*90c8c64dSAndroid Build Coastguard Worker     You may obtain a copy of the License at
8*90c8c64dSAndroid Build Coastguard Worker
9*90c8c64dSAndroid Build Coastguard Worker          http://www.apache.org/licenses/LICENSE-2.0
10*90c8c64dSAndroid Build Coastguard Worker
11*90c8c64dSAndroid Build Coastguard Worker     Unless required by applicable law or agreed to in writing, software
12*90c8c64dSAndroid Build Coastguard Worker     distributed under the License is distributed on an "AS IS" BASIS,
13*90c8c64dSAndroid Build Coastguard Worker     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*90c8c64dSAndroid Build Coastguard Worker     See the License for the specific language governing permissions and
15*90c8c64dSAndroid Build Coastguard Worker     limitations under the License.
16*90c8c64dSAndroid Build Coastguard Worker-->
17*90c8c64dSAndroid Build Coastguard Worker
18*90c8c64dSAndroid Build Coastguard Worker<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
19*90c8c64dSAndroid Build Coastguard Worker    android:layout_width="match_parent"
20*90c8c64dSAndroid Build Coastguard Worker    android:layout_height="match_parent"
21*90c8c64dSAndroid Build Coastguard Worker    android:orientation="vertical" >
22*90c8c64dSAndroid Build Coastguard Worker
23*90c8c64dSAndroid Build Coastguard Worker    <LinearLayout
24*90c8c64dSAndroid Build Coastguard Worker        android:layout_width="match_parent"
25*90c8c64dSAndroid Build Coastguard Worker        android:layout_height="wrap_content"
26*90c8c64dSAndroid Build Coastguard Worker        android:orientation="vertical"
27*90c8c64dSAndroid Build Coastguard Worker        android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
28*90c8c64dSAndroid Build Coastguard Worker        android:paddingRight="?android:attr/listPreferredItemPaddingRight">
29*90c8c64dSAndroid Build Coastguard Worker
30*90c8c64dSAndroid Build Coastguard Worker        <Space
31*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
32*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
33*90c8c64dSAndroid Build Coastguard Worker
34*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
35*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
36*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
37*90c8c64dSAndroid Build Coastguard Worker            android:orientation="vertical"
38*90c8c64dSAndroid Build Coastguard Worker            android:background="@drawable/card_background"
39*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="24dp"
40*90c8c64dSAndroid Build Coastguard Worker            android:padding="16dp"
41*90c8c64dSAndroid Build Coastguard Worker            android:elevation="2dp">
42*90c8c64dSAndroid Build Coastguard Worker
43*90c8c64dSAndroid Build Coastguard Worker            <TextView
44*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
45*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
46*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_header_buttons"
47*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Title" />
48*90c8c64dSAndroid Build Coastguard Worker
49*90c8c64dSAndroid Build Coastguard Worker            <Space
50*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
51*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
52*90c8c64dSAndroid Build Coastguard Worker
53*90c8c64dSAndroid Build Coastguard Worker            <Button
54*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/button"
55*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
56*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
57*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_button" />
58*90c8c64dSAndroid Build Coastguard Worker
59*90c8c64dSAndroid Build Coastguard Worker            <Button
60*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/button_borderless"
61*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
62*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
63*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_button_borderless"
64*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/Widget.Material.Button.Borderless" />
65*90c8c64dSAndroid Build Coastguard Worker
66*90c8c64dSAndroid Build Coastguard Worker            <Button
67*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/button_colored"
68*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
69*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
70*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_button_colored"
71*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/Widget.Material.Button.Colored" />
72*90c8c64dSAndroid Build Coastguard Worker
73*90c8c64dSAndroid Build Coastguard Worker            <Button
74*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/button_borderless_colored"
75*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
76*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
77*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_button_borderless_colored"
78*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/Widget.Material.Button.Borderless.Colored" />
79*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
80*90c8c64dSAndroid Build Coastguard Worker
81*90c8c64dSAndroid Build Coastguard Worker        <Space
82*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
83*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
84*90c8c64dSAndroid Build Coastguard Worker
85*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
86*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
87*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
88*90c8c64dSAndroid Build Coastguard Worker            android:orientation="vertical"
89*90c8c64dSAndroid Build Coastguard Worker            android:background="@drawable/card_background"
90*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="24dp"
91*90c8c64dSAndroid Build Coastguard Worker            android:padding="16dp"
92*90c8c64dSAndroid Build Coastguard Worker            android:elevation="2dp">
93*90c8c64dSAndroid Build Coastguard Worker
94*90c8c64dSAndroid Build Coastguard Worker            <TextView
95*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
96*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
97*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_header_compound_buttons"
98*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Title" />
99*90c8c64dSAndroid Build Coastguard Worker
100*90c8c64dSAndroid Build Coastguard Worker            <Space
101*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
102*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
103*90c8c64dSAndroid Build Coastguard Worker
104*90c8c64dSAndroid Build Coastguard Worker            <Switch
105*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
106*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
107*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_switch" />
108*90c8c64dSAndroid Build Coastguard Worker
109*90c8c64dSAndroid Build Coastguard Worker            <CheckBox
110*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/check1"
111*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
112*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
113*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_1_checkbox_1" />
114*90c8c64dSAndroid Build Coastguard Worker
115*90c8c64dSAndroid Build Coastguard Worker            <CheckBox
116*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/check2"
117*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
118*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
119*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_1_checkbox_2" />
120*90c8c64dSAndroid Build Coastguard Worker
121*90c8c64dSAndroid Build Coastguard Worker            <RadioGroup
122*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="match_parent"
123*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
124*90c8c64dSAndroid Build Coastguard Worker                android:orientation="vertical" >
125*90c8c64dSAndroid Build Coastguard Worker
126*90c8c64dSAndroid Build Coastguard Worker                <RadioButton
127*90c8c64dSAndroid Build Coastguard Worker                    android:id="@+id/radio1"
128*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="wrap_content"
129*90c8c64dSAndroid Build Coastguard Worker                    android:layout_height="wrap_content"
130*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/controls_1_radiobutton_1" />
131*90c8c64dSAndroid Build Coastguard Worker
132*90c8c64dSAndroid Build Coastguard Worker                <RadioButton
133*90c8c64dSAndroid Build Coastguard Worker                    android:id="@+id/radio2"
134*90c8c64dSAndroid Build Coastguard Worker                    android:layout_width="wrap_content"
135*90c8c64dSAndroid Build Coastguard Worker                    android:layout_height="wrap_content"
136*90c8c64dSAndroid Build Coastguard Worker                    android:text="@string/controls_1_radiobutton_2" />
137*90c8c64dSAndroid Build Coastguard Worker            </RadioGroup>
138*90c8c64dSAndroid Build Coastguard Worker
139*90c8c64dSAndroid Build Coastguard Worker            <CheckBox
140*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/star"
141*90c8c64dSAndroid Build Coastguard Worker                style="?android:attr/starStyle"
142*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
143*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
144*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_1_star" />
145*90c8c64dSAndroid Build Coastguard Worker
146*90c8c64dSAndroid Build Coastguard Worker            <ToggleButton
147*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/toggle1"
148*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
149*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content" />
150*90c8c64dSAndroid Build Coastguard Worker
151*90c8c64dSAndroid Build Coastguard Worker            <ToggleButton
152*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/toggle2"
153*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
154*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content" />
155*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
156*90c8c64dSAndroid Build Coastguard Worker
157*90c8c64dSAndroid Build Coastguard Worker        <Space
158*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
159*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
160*90c8c64dSAndroid Build Coastguard Worker
161*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
162*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
163*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
164*90c8c64dSAndroid Build Coastguard Worker            android:orientation="vertical"
165*90c8c64dSAndroid Build Coastguard Worker            android:background="@drawable/card_background"
166*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="24dp"
167*90c8c64dSAndroid Build Coastguard Worker            android:padding="16dp"
168*90c8c64dSAndroid Build Coastguard Worker            android:elevation="2dp">
169*90c8c64dSAndroid Build Coastguard Worker
170*90c8c64dSAndroid Build Coastguard Worker            <TextView
171*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
172*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
173*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_header_spinners"
174*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Title" />
175*90c8c64dSAndroid Build Coastguard Worker
176*90c8c64dSAndroid Build Coastguard Worker            <Space
177*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
178*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
179*90c8c64dSAndroid Build Coastguard Worker
180*90c8c64dSAndroid Build Coastguard Worker            <TextView
181*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
182*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
183*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_spinner"
184*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Body1" />
185*90c8c64dSAndroid Build Coastguard Worker
186*90c8c64dSAndroid Build Coastguard Worker            <Spinner
187*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/spinner"
188*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
189*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
190*90c8c64dSAndroid Build Coastguard Worker                android:entries="@array/planets"
191*90c8c64dSAndroid Build Coastguard Worker                android:drawSelectorOnTop="true" />
192*90c8c64dSAndroid Build Coastguard Worker
193*90c8c64dSAndroid Build Coastguard Worker            <Space
194*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
195*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="8dp" />
196*90c8c64dSAndroid Build Coastguard Worker
197*90c8c64dSAndroid Build Coastguard Worker            <TextView
198*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
199*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
200*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_spinner_underlined"
201*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Body1" />
202*90c8c64dSAndroid Build Coastguard Worker
203*90c8c64dSAndroid Build Coastguard Worker            <Spinner
204*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/spinner_underlined"
205*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
206*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
207*90c8c64dSAndroid Build Coastguard Worker                android:entries="@array/planets"
208*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/Widget.Material.Spinner.Underlined" />
209*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
210*90c8c64dSAndroid Build Coastguard Worker
211*90c8c64dSAndroid Build Coastguard Worker        <Space
212*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
213*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
214*90c8c64dSAndroid Build Coastguard Worker
215*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
216*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
217*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
218*90c8c64dSAndroid Build Coastguard Worker            android:orientation="vertical"
219*90c8c64dSAndroid Build Coastguard Worker            android:background="@drawable/card_background"
220*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="24dp"
221*90c8c64dSAndroid Build Coastguard Worker            android:padding="16dp"
222*90c8c64dSAndroid Build Coastguard Worker            android:elevation="2dp">
223*90c8c64dSAndroid Build Coastguard Worker
224*90c8c64dSAndroid Build Coastguard Worker            <TextView
225*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
226*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
227*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_header_seek_bars"
228*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Title" />
229*90c8c64dSAndroid Build Coastguard Worker
230*90c8c64dSAndroid Build Coastguard Worker            <Space
231*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
232*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
233*90c8c64dSAndroid Build Coastguard Worker
234*90c8c64dSAndroid Build Coastguard Worker            <TextView
235*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
236*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
237*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_seek_bar"
238*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Body1" />
239*90c8c64dSAndroid Build Coastguard Worker
240*90c8c64dSAndroid Build Coastguard Worker            <SeekBar
241*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/seekbar"
242*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="200dp"
243*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="48dp" />
244*90c8c64dSAndroid Build Coastguard Worker
245*90c8c64dSAndroid Build Coastguard Worker            <Space
246*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
247*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="8dp" />
248*90c8c64dSAndroid Build Coastguard Worker
249*90c8c64dSAndroid Build Coastguard Worker            <TextView
250*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
251*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
252*90c8c64dSAndroid Build Coastguard Worker                android:max="7"
253*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_seek_bar_discrete"
254*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Body1" />
255*90c8c64dSAndroid Build Coastguard Worker
256*90c8c64dSAndroid Build Coastguard Worker            <SeekBar
257*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/seekbar_discrete"
258*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="200dp"
259*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="48dp"
260*90c8c64dSAndroid Build Coastguard Worker                android:max="7"
261*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/Widget.Material.SeekBar.Discrete" />
262*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
263*90c8c64dSAndroid Build Coastguard Worker
264*90c8c64dSAndroid Build Coastguard Worker        <Space
265*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
266*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
267*90c8c64dSAndroid Build Coastguard Worker
268*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
269*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
270*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
271*90c8c64dSAndroid Build Coastguard Worker            android:orientation="vertical"
272*90c8c64dSAndroid Build Coastguard Worker            android:background="@drawable/card_background"
273*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="24dp"
274*90c8c64dSAndroid Build Coastguard Worker            android:padding="16dp"
275*90c8c64dSAndroid Build Coastguard Worker            android:elevation="2dp">
276*90c8c64dSAndroid Build Coastguard Worker
277*90c8c64dSAndroid Build Coastguard Worker            <TextView
278*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
279*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
280*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_header_text_fields"
281*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Title" />
282*90c8c64dSAndroid Build Coastguard Worker
283*90c8c64dSAndroid Build Coastguard Worker            <Space
284*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
285*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
286*90c8c64dSAndroid Build Coastguard Worker
287*90c8c64dSAndroid Build Coastguard Worker            <EditText
288*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/edit"
289*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="200dp"
290*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
291*90c8c64dSAndroid Build Coastguard Worker                android:layout_weight="1" />
292*90c8c64dSAndroid Build Coastguard Worker
293*90c8c64dSAndroid Build Coastguard Worker            <Space
294*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
295*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
296*90c8c64dSAndroid Build Coastguard Worker
297*90c8c64dSAndroid Build Coastguard Worker            <EditText
298*90c8c64dSAndroid Build Coastguard Worker                android:id="@+id/edit2"
299*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="200dp"
300*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
301*90c8c64dSAndroid Build Coastguard Worker                android:layout_weight="1" />
302*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
303*90c8c64dSAndroid Build Coastguard Worker
304*90c8c64dSAndroid Build Coastguard Worker        <Space
305*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
306*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
307*90c8c64dSAndroid Build Coastguard Worker
308*90c8c64dSAndroid Build Coastguard Worker        <LinearLayout
309*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="match_parent"
310*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="wrap_content"
311*90c8c64dSAndroid Build Coastguard Worker            android:orientation="vertical"
312*90c8c64dSAndroid Build Coastguard Worker            android:background="@drawable/card_background"
313*90c8c64dSAndroid Build Coastguard Worker            android:paddingTop="24dp"
314*90c8c64dSAndroid Build Coastguard Worker            android:paddingLeft="16dp"
315*90c8c64dSAndroid Build Coastguard Worker            android:paddingRight="16dp"
316*90c8c64dSAndroid Build Coastguard Worker            android:paddingBottom="16dp"
317*90c8c64dSAndroid Build Coastguard Worker            android:elevation="2dp">
318*90c8c64dSAndroid Build Coastguard Worker
319*90c8c64dSAndroid Build Coastguard Worker            <TextView
320*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
321*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
322*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/controls_header_text_appearances"
323*90c8c64dSAndroid Build Coastguard Worker                style="@android:style/TextAppearance.Material.Title" />
324*90c8c64dSAndroid Build Coastguard Worker
325*90c8c64dSAndroid Build Coastguard Worker            <Space
326*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
327*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="16dp" />
328*90c8c64dSAndroid Build Coastguard Worker
329*90c8c64dSAndroid Build Coastguard Worker            <TextView
330*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="match_parent"
331*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
332*90c8c64dSAndroid Build Coastguard Worker                android:layout_marginTop="5dip"
333*90c8c64dSAndroid Build Coastguard Worker                android:focusable="true"
334*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/textColorPrimary"
335*90c8c64dSAndroid Build Coastguard Worker                android:textAppearance="@android:style/TextAppearance.Material.Body1" />
336*90c8c64dSAndroid Build Coastguard Worker
337*90c8c64dSAndroid Build Coastguard Worker            <Space
338*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
339*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="8dp" />
340*90c8c64dSAndroid Build Coastguard Worker
341*90c8c64dSAndroid Build Coastguard Worker            <TextView
342*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="match_parent"
343*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
344*90c8c64dSAndroid Build Coastguard Worker                android:layout_marginTop="5dip"
345*90c8c64dSAndroid Build Coastguard Worker                android:focusable="true"
346*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/textColorSecondary"
347*90c8c64dSAndroid Build Coastguard Worker                android:textAppearance="@android:style/TextAppearance.Material.Body1"
348*90c8c64dSAndroid Build Coastguard Worker                android:textColor="?android:attr/textColorSecondary" />
349*90c8c64dSAndroid Build Coastguard Worker
350*90c8c64dSAndroid Build Coastguard Worker            <Space
351*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
352*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="8dp" />
353*90c8c64dSAndroid Build Coastguard Worker
354*90c8c64dSAndroid Build Coastguard Worker            <TextView
355*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="match_parent"
356*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="wrap_content"
357*90c8c64dSAndroid Build Coastguard Worker                android:layout_marginTop="5dip"
358*90c8c64dSAndroid Build Coastguard Worker                android:focusable="true"
359*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/textColorTertiary"
360*90c8c64dSAndroid Build Coastguard Worker                android:textAppearance="@android:style/TextAppearance.Material.Body1"
361*90c8c64dSAndroid Build Coastguard Worker                android:textColor="?android:attr/textColorTertiary" />
362*90c8c64dSAndroid Build Coastguard Worker
363*90c8c64dSAndroid Build Coastguard Worker            <Space
364*90c8c64dSAndroid Build Coastguard Worker                android:layout_width="wrap_content"
365*90c8c64dSAndroid Build Coastguard Worker                android:layout_height="8dp" />
366*90c8c64dSAndroid Build Coastguard Worker
367*90c8c64dSAndroid Build Coastguard Worker            <TextView
368*90c8c64dSAndroid Build Coastguard Worker                style="?android:attr/listSeparatorTextViewStyle"
369*90c8c64dSAndroid Build Coastguard Worker                android:layout_marginTop="5dip"
370*90c8c64dSAndroid Build Coastguard Worker                android:text="@string/listSeparatorTextViewStyle" />
371*90c8c64dSAndroid Build Coastguard Worker        </LinearLayout>
372*90c8c64dSAndroid Build Coastguard Worker
373*90c8c64dSAndroid Build Coastguard Worker        <Space
374*90c8c64dSAndroid Build Coastguard Worker            android:layout_width="wrap_content"
375*90c8c64dSAndroid Build Coastguard Worker            android:layout_height="16dp" />
376*90c8c64dSAndroid Build Coastguard Worker    </LinearLayout>
377*90c8c64dSAndroid Build Coastguard Worker</ScrollView>
378