Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / platforms / android-25 / data / res / layout / simple_list_item_2_single_choice.xml
blob6cdb88bc10a52e2ce9415f8533e4ace0e6dafc02
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2011 The Android Open Source Project
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
8           http://www.apache.org/licenses/LICENSE-2.0
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 -->
17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18     android:layout_width="match_parent"
19     android:layout_height="wrap_content"
20     android:orientation="horizontal"
21     android:gravity="center_vertical"
22     android:paddingStart="?attr/listPreferredItemPaddingStart"
23     android:paddingEnd="12dip"
24     android:minHeight="?attr/listPreferredItemHeightSmall"
25     android:background="@color/transparent">
27     <LinearLayout
28         android:layout_width="wrap_content"
29         android:layout_height="wrap_content"
30         android:layout_weight="1"
31         android:orientation="vertical"
32         android:gravity="center_vertical">
34         <TextView android:id="@android:id/text1"
35             android:layout_width="wrap_content"
36             android:layout_height="wrap_content"
37             android:textAppearance="?attr/textAppearanceListItem"
38             android:textColor="?attr/textColorAlertDialogListItem"
39             android:gravity="center_vertical|start"
40             android:singleLine="true"
41             android:ellipsize="marquee" />
42         
43         <TextView android:id="@android:id/text2"
44             android:layout_width="wrap_content"
45             android:layout_height="wrap_content"
46             android:textAppearance="?attr/textAppearanceListItemSecondary"
47             android:textColor="?attr/textColorAlertDialogListItem"
48             android:gravity="center_vertical|start"
49             android:singleLine="true"
50             android:ellipsize="marquee" />
51         
52     </LinearLayout>
54     <RadioButton
55         android:id="@+id/radio"
56         android:layout_width="35dip"
57         android:layout_height="wrap_content"
58         android:paddingEnd="12dip"
59         android:gravity="center_vertical"
60         android:focusable="false"
61         android:clickable="false" />
63 </LinearLayout>