From 012736bff62005c8c61f5844529fc5216af1e885 Mon Sep 17 00:00:00 2001 From: Alex Ning Date: Thu, 19 Mar 2020 12:20:23 +0800 Subject: Start implementing custom theme settings. --- .../main/res/layout/activity_customize_theme.xml | 41 ++++++++++++++++++++++ app/src/main/res/layout/activity_settings.xml | 1 - app/src/main/res/layout/item_theme_color_item.xml | 33 +++++++++++++++++ app/src/main/res/layout/item_theme_switch_item.xml | 32 +++++++++++++++++ 4 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 app/src/main/res/layout/activity_customize_theme.xml create mode 100644 app/src/main/res/layout/item_theme_color_item.xml create mode 100644 app/src/main/res/layout/item_theme_switch_item.xml (limited to 'app/src/main/res/layout') diff --git a/app/src/main/res/layout/activity_customize_theme.xml b/app/src/main/res/layout/activity_customize_theme.xml new file mode 100644 index 00000000..362772a1 --- /dev/null +++ b/app/src/main/res/layout/activity_customize_theme.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml index 50dd0290..7e10c9ad 100644 --- a/app/src/main/res/layout/activity_settings.xml +++ b/app/src/main/res/layout/activity_settings.xml @@ -2,7 +2,6 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" - android:id="@+id/coordinator_layout_settings_activity" android:background="?attr/backgroundColor"> + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/item_theme_switch_item.xml b/app/src/main/res/layout/item_theme_switch_item.xml new file mode 100644 index 00000000..4b337fc8 --- /dev/null +++ b/app/src/main/res/layout/item_theme_switch_item.xml @@ -0,0 +1,32 @@ + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3