summaryrefslogtreecommitdiffstats
path: root/res/layout/per_app_theme_list_item.xml
blob: c426d5ebd7691899de8aa8d60ea466a16935535c (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="10dp"
    android:paddingBottom="10dp">

    <TextView android:id="@+id/theme_title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_marginStart="16dp"
        android:textSize="16dp"
        android:textColor="@color/per_app_theme_list_item_text_color"/>

    <TextView android:id="@+id/selected_indicator"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="16dp"
        android:gravity="right"
        android:textSize="16dp"
        android:textColor="@color/per_app_theme_list_item_applied_text_color"
        android:text="@string/per_app_applied_theme_indicator"/>

</LinearLayout>