From 831e7e3f9f62dba7cb8695f6800628e3a6d2f6d8 Mon Sep 17 00:00:00 2001 From: Apostolis Papadimitriou Date: Thu, 22 Mar 2018 12:16:09 +0200 Subject: [PATCH] Various changes in colors and styles --- .../app/src/main/AndroidManifest.xml | 4 +- .../src/main/res/drawable/ic_cloud_queue.xml | 9 +++++ .../src/main/res/drawable/ic_info_outline.xml | 9 +++++ .../app/src/main/res/drawable/ic_input.xml | 9 +++++ .../src/main/res/drawable/ic_rate_review.xml | 9 +++++ .../app/src/main/res/drawable/ic_send.xml | 9 +++++ .../drawable/ic_subdirectory_arrow_right.xml | 9 +++++ .../src/main/res/layout/nav_header_main.xml | 6 +-- .../main/res/menu/activity_main_drawer.xml | 37 +++++++++++++++++++ .../app/src/main/res/values/styles.xml | 13 ++++++- 10 files changed, 106 insertions(+), 8 deletions(-) create mode 100644 shell/android-studio/app/src/main/res/drawable/ic_cloud_queue.xml create mode 100644 shell/android-studio/app/src/main/res/drawable/ic_info_outline.xml create mode 100644 shell/android-studio/app/src/main/res/drawable/ic_input.xml create mode 100644 shell/android-studio/app/src/main/res/drawable/ic_rate_review.xml create mode 100644 shell/android-studio/app/src/main/res/drawable/ic_send.xml create mode 100644 shell/android-studio/app/src/main/res/drawable/ic_subdirectory_arrow_right.xml create mode 100644 shell/android-studio/app/src/main/res/menu/activity_main_drawer.xml diff --git a/shell/android-studio/app/src/main/AndroidManifest.xml b/shell/android-studio/app/src/main/AndroidManifest.xml index fe1817ea0..be0f34883 100644 --- a/shell/android-studio/app/src/main/AndroidManifest.xml +++ b/shell/android-studio/app/src/main/AndroidManifest.xml @@ -43,6 +43,7 @@ android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" + android:roundIcon="@drawable/ic_launcher" android:banner="@drawable/ic_banner" android:logo="@drawable/ic_banner" android:hardwareAccelerated="true" @@ -59,7 +60,6 @@ android:theme="@style/AppTheme.NoActionBar"> - @@ -120,9 +120,7 @@ android:launchMode="singleTask" > - - diff --git a/shell/android-studio/app/src/main/res/drawable/ic_cloud_queue.xml b/shell/android-studio/app/src/main/res/drawable/ic_cloud_queue.xml new file mode 100644 index 000000000..0ca5119d0 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/ic_cloud_queue.xml @@ -0,0 +1,9 @@ + + + diff --git a/shell/android-studio/app/src/main/res/drawable/ic_info_outline.xml b/shell/android-studio/app/src/main/res/drawable/ic_info_outline.xml new file mode 100644 index 000000000..cf53e145c --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/ic_info_outline.xml @@ -0,0 +1,9 @@ + + + diff --git a/shell/android-studio/app/src/main/res/drawable/ic_input.xml b/shell/android-studio/app/src/main/res/drawable/ic_input.xml new file mode 100644 index 000000000..fea69dfb7 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/ic_input.xml @@ -0,0 +1,9 @@ + + + diff --git a/shell/android-studio/app/src/main/res/drawable/ic_rate_review.xml b/shell/android-studio/app/src/main/res/drawable/ic_rate_review.xml new file mode 100644 index 000000000..df82c525d --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/ic_rate_review.xml @@ -0,0 +1,9 @@ + + + diff --git a/shell/android-studio/app/src/main/res/drawable/ic_send.xml b/shell/android-studio/app/src/main/res/drawable/ic_send.xml new file mode 100644 index 000000000..e145ca83c --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/ic_send.xml @@ -0,0 +1,9 @@ + + + diff --git a/shell/android-studio/app/src/main/res/drawable/ic_subdirectory_arrow_right.xml b/shell/android-studio/app/src/main/res/drawable/ic_subdirectory_arrow_right.xml new file mode 100644 index 000000000..65acc6989 --- /dev/null +++ b/shell/android-studio/app/src/main/res/drawable/ic_subdirectory_arrow_right.xml @@ -0,0 +1,9 @@ + + + diff --git a/shell/android-studio/app/src/main/res/layout/nav_header_main.xml b/shell/android-studio/app/src/main/res/layout/nav_header_main.xml index 5063de022..97b8ce71d 100644 --- a/shell/android-studio/app/src/main/res/layout/nav_header_main.xml +++ b/shell/android-studio/app/src/main/res/layout/nav_header_main.xml @@ -20,14 +20,14 @@ android:layout_height="match_parent" android:paddingTop="@dimen/nav_header_vertical_spacing" android:text="@string/app_name" - android:textAppearance="@style/TextAppearance.AppCompat.Body1" - android:textColor="@android:color/black" /> + android:textColor="@color/ice_dark" + android:textAppearance="@style/TextAppearance.AppCompat.Body1" /> + android:textColor="@color/ice_dark" /> diff --git a/shell/android-studio/app/src/main/res/menu/activity_main_drawer.xml b/shell/android-studio/app/src/main/res/menu/activity_main_drawer.xml new file mode 100644 index 000000000..c0a718044 --- /dev/null +++ b/shell/android-studio/app/src/main/res/menu/activity_main_drawer.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/shell/android-studio/app/src/main/res/values/styles.xml b/shell/android-studio/app/src/main/res/values/styles.xml index d0541986c..96a4d7b56 100644 --- a/shell/android-studio/app/src/main/res/values/styles.xml +++ b/shell/android-studio/app/src/main/res/values/styles.xml @@ -1,11 +1,20 @@ -