OSDN Git Service

Profiles: update text style to match Settings
[android-x86/packages-apps-Settings.git] / res / layout / list_two_line_item.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4     android:layout_width="match_parent"
5     android:layout_height="wrap_content"
6     android:minHeight="?android:attr/listPreferredItemHeight"
7     android:orientation="vertical"
8     android:gravity="center"
9     >
10
11     <TextView
12         android:id="@+id/title"
13         android:padding="4dp"
14         android:layout_height="wrap_content"
15         android:layout_width="match_parent"
16         android:textAppearance="@android:style/TextAppearance.Material.Subhead"
17         android:textColor="?android:attr/textColorPrimary" />
18
19     <TextView
20         android:id="@+id/summary"
21         android:paddingLeft="4dp"
22         android:paddingRight="4dp"
23         android:layout_height="wrap_content"
24         android:layout_width="match_parent"
25         android:textAppearance="@android:style/TextAppearance.Material.Body1"
26         android:textColor="?android:attr/textColorSecondary" />
27
28 </LinearLayout>