summaryrefslogtreecommitdiffstats
path: root/res/layout/per_app_theme_list.xml
blob: 54520c55d31c582d142500fc3632a7bb49331c44 (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"?>
<com.cyngn.theme.perapptheming.PerAppThemeListLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.cyngn.theme.perapptheming.PerAppThemeListView
        android:id="@+id/theme_list"
        android:layout_width="@dimen/theme_list_width"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical|left"
        android:minHeight="@dimen/theme_list_min_height"
        app:maxHeight="@dimen/theme_list_max_height"
        android:divider="@android:color/transparent"
        android:padding="4dp"
        android:elevation="10dp"
        android:layout_marginLeft="@dimen/theme_list_side_margin"
        android:layout_marginRight="@dimen/theme_list_side_margin"
        android:background="@drawable/per_app_theme_list_background"/>

    <TextView
        android:id="@+id/applying_theme_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:textColor="@color/per_app_theme_list_item_text_color"
        android:text="@string/per_app_theme_applying"
        android:textSize="16dp"
        android:alpha="0"/>

</com.cyngn.theme.perapptheming.PerAppThemeListLayout>