summaryrefslogtreecommitdiffstats
path: root/QuickSettings/res/layout/setting.xml
blob: 0aff71f67e4f75a102dd8fa55e4164f5b17ccded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/setting_background"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:orientation="vertical"
    android:paddingBottom="@dimen/setting_padding_bottom"
    android:paddingTop="@dimen/setting_padding_top" >

    <TextView
        android:id="@+id/setting_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fontFamily="sans-serif-condensed"
        android:paddingEnd="@dimen/setting_text_padding_right"
        android:paddingStart="@dimen/setting_text_padding_left"
        android:textColor="@color/setting_text_title_color"
        android:textSize="@dimen/setting_text_title_size" />

    <TextView
        android:id="@+id/setting_value"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fontFamily="sans-serif"
        android:paddingEnd="@dimen/setting_text_padding_right"
        android:paddingStart="@dimen/setting_text_padding_left"
        android:textColor="@color/setting_text_value_color"
        android:textSize="@dimen/setting_text_value_size" />

</LinearLayout>