From 2aa3fdaae7c03930412665fc512992b691f37571 Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Thu, 31 Dec 2020 11:08:13 +0530 Subject: [PATCH 01/13] Change menu item tint, icon change, bottom menu icon and tint changes in pie --- res/color/bottom_nav_color.xml | 5 +++++ res/layout/gallery_main.xml | 4 ++-- res/menu/album.xml | 6 +++--- res/menu/navigation_items.xml | 6 +++--- res/values/colors.xml | 4 ++-- src/com/android/gallery3d/app/AlbumPage.java | 14 ++++++++++++++ src/com/android/gallery3d/app/AlbumSetPage.java | 15 +++++++++++++++ src/com/android/gallery3d/app/TimeLinePage.java | 15 +++++++++++++++ 8 files changed, 59 insertions(+), 10 deletions(-) create mode 100644 res/color/bottom_nav_color.xml diff --git a/res/color/bottom_nav_color.xml b/res/color/bottom_nav_color.xml new file mode 100644 index 000000000..f6aec0b9a --- /dev/null +++ b/res/color/bottom_nav_color.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/res/layout/gallery_main.xml b/res/layout/gallery_main.xml index b668381d3..fb882e1e1 100644 --- a/res/layout/gallery_main.xml +++ b/res/layout/gallery_main.xml @@ -64,8 +64,8 @@ android:layout_alignParentBottom="true" app:menu="@menu/navigation_items" app:itemBackground="@color/primary" - app:itemIconTint="@drawable/item_bg" - app:itemTextColor="@drawable/item_bg" /> + app:itemIconTint="@color/bottom_nav_color" + app:itemTextColor="@color/bottom_nav_color" /> diff --git a/res/menu/album.xml b/res/menu/album.xml index 4b76b6981..c68ed20c0 100644 --- a/res/menu/album.xml +++ b/res/menu/album.xml @@ -15,15 +15,15 @@ --> diff --git a/res/menu/navigation_items.xml b/res/menu/navigation_items.xml index b4f39dc1c..c606602df 100644 --- a/res/menu/navigation_items.xml +++ b/res/menu/navigation_items.xml @@ -1,11 +1,11 @@ + android:icon="@lineageos.platform:drawable/ic_timeline" /> + android:icon="@lineageos.platform:drawable/ic_album" /> + android:icon="@lineageos.platform:drawable/ic_videos" /> diff --git a/res/values/colors.xml b/res/values/colors.xml index b00001ace..347ccb7d6 100755 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -89,6 +89,6 @@ @color/white @color/default_background - @lineageos.platform:color/color_default_gray2 - @lineageos.platform:color/color_default_primary + @lineageos.platform:color/color_default_primary + @lineageos.platform:color/color_default_blue1 diff --git a/src/com/android/gallery3d/app/AlbumPage.java b/src/com/android/gallery3d/app/AlbumPage.java index 57a663c48..8c3758450 100644 --- a/src/com/android/gallery3d/app/AlbumPage.java +++ b/src/com/android/gallery3d/app/AlbumPage.java @@ -21,7 +21,9 @@ import android.content.Context; import android.content.Intent; //import android.drm.DrmHelper; import android.graphics.Color; +import android.graphics.PorterDuff; import android.graphics.Rect; +import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.Bundle; import android.os.Handler; @@ -632,6 +634,7 @@ public class AlbumPage extends ActivityState implements GalleryActionBar.Cluster } else { inflator.inflate(R.menu.album, menu); mActionBar.setTitle(mMediaSet.getName()); + changeMenuItemColor(menu); FilterUtils.setupMenuItems(mActionBar, mMediaSetPath, true); @@ -651,6 +654,17 @@ public class AlbumPage extends ActivityState implements GalleryActionBar.Cluster return true; } + private void changeMenuItemColor(Menu menu){ + for(int i = 0; i < menu.size(); i++){ + Drawable drawable = menu.getItem(i).getIcon(); + if(drawable != null) { + drawable.mutate(); + drawable.setColorFilter(mActivity.getResources().getColor(R.color.white), PorterDuff.Mode.SRC_ATOP); + } + } + + } + private boolean allVideoFiles() { if (mMediaSet == null) return false; diff --git a/src/com/android/gallery3d/app/AlbumSetPage.java b/src/com/android/gallery3d/app/AlbumSetPage.java index ffa5d95d0..e61c94184 100755 --- a/src/com/android/gallery3d/app/AlbumSetPage.java +++ b/src/com/android/gallery3d/app/AlbumSetPage.java @@ -23,7 +23,9 @@ import android.app.Activity; import android.content.Context; import android.content.Intent; import android.graphics.Color; +import android.graphics.PorterDuff; import android.graphics.Rect; +import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.Bundle; import android.os.Handler; @@ -624,10 +626,23 @@ public class AlbumSetPage extends ActivityState implements moreItem.setVisible(mActivity.getResources().getBoolean( R.bool.config_show_more_images)); mActionBar.setTitle(R.string.albums_title); + changeMenuItemColor(menu); } return true; } + + private void changeMenuItemColor(Menu menu){ + for(int i = 0; i < menu.size(); i++){ + Drawable drawable = menu.getItem(i).getIcon(); + if(drawable != null) { + drawable.mutate(); + drawable.setColorFilter(mActivity.getResources().getColor(R.color.white), PorterDuff.Mode.SRC_ATOP); + } + } + + } + @Override protected boolean onItemSelected(MenuItem item) { Activity activity = mActivity; diff --git a/src/com/android/gallery3d/app/TimeLinePage.java b/src/com/android/gallery3d/app/TimeLinePage.java index 2c71b8b1e..d9a4eb9c6 100755 --- a/src/com/android/gallery3d/app/TimeLinePage.java +++ b/src/com/android/gallery3d/app/TimeLinePage.java @@ -26,7 +26,9 @@ import android.content.Intent; import android.content.IntentFilter; import android.content.res.Configuration; import android.graphics.Color; +import android.graphics.PorterDuff; import android.graphics.Rect; +import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.AsyncTask; import android.os.Bundle; @@ -592,6 +594,7 @@ public class TimeLinePage extends ActivityState implements } else { inflator.inflate(R.menu.album, menu); actionBar.setTitle(R.string.timeline_title); + changeMenuItemColor(menu); FilterUtils.setupMenuItems(actionBar, mMediaSetPath, true); //menu.findItem(R.id.action_group_by).setVisible(mShowClusterMenu); @@ -602,6 +605,18 @@ public class TimeLinePage extends ActivityState implements return true; } + private void changeMenuItemColor(Menu menu){ + for(int i = 0; i < menu.size(); i++){ + Drawable drawable = menu.getItem(i).getIcon(); + if(drawable != null) { + drawable.mutate(); + drawable.setColorFilter(mActivity.getResources().getColor(R.color.white), PorterDuff.Mode.SRC_ATOP); + } + } + + } + + private void prepareAnimationBackToFilmstrip(int slotIndex) { if (mAlbumDataAdapter == null || !mAlbumDataAdapter.isActive(slotIndex)) return; MediaItem item = mAlbumDataAdapter.get(slotIndex); -- GitLab From 8b4b3a7d76927b5a8056e560662be2b6d255baac Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Thu, 31 Dec 2020 12:01:44 +0530 Subject: [PATCH 02/13] Icon change albumset.xml --- res/menu/albumset.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/menu/albumset.xml b/res/menu/albumset.xml index b21bf3d38..0b91e27a4 100644 --- a/res/menu/albumset.xml +++ b/res/menu/albumset.xml @@ -18,11 +18,11 @@ --> Date: Mon, 4 Jan 2021 17:11:25 +0530 Subject: [PATCH 03/13] Changes done in MasterImage.java --- .../filtershow/imageshow/MasterImage.java | 28 ++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java b/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java index 58048bf9a..3e8a923d6 100644 --- a/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java +++ b/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java @@ -25,7 +25,10 @@ import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Matrix; +import android.graphics.Paint; import android.graphics.Point; +import android.graphics.PorterDuff; +import android.graphics.PorterDuffXfermode; import android.graphics.Rect; import android.graphics.RectF; import android.net.Uri; @@ -322,7 +325,8 @@ public class MasterImage implements RenderingRequestCaller { int sw = SMALL_BITMAP_DIM; int sh = (int) (sw * (float) mOriginalBitmapLarge.getHeight() / mOriginalBitmapLarge .getWidth()); - mOriginalBitmapSmall = Bitmap.createScaledBitmap(mOriginalBitmapLarge, sw, sh, true); + Bitmap temp = Bitmap.createScaledBitmap(mOriginalBitmapLarge, sw, sh, true); + mOriginalBitmapSmall = getRoundedCornerBitmap(temp,50); Log.d(TAG, "MasterImage.loadBitmap(): OriginalBitmapLarge.WH is (" + mOriginalBitmapLarge.getWidth() + ", " + mOriginalBitmapLarge.getHeight() + "), OriginalBitmapSmall.WH is (" + sw + ", " + sh + "), originalBounds is " + originalBounds.toString()); @@ -331,6 +335,28 @@ public class MasterImage implements RenderingRequestCaller { return true; } + public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int pixels) { + Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap + .getHeight(), Bitmap.Config.ARGB_8888); + Canvas canvas = new Canvas(output); + + final int color = 0xff424242; + final Paint paint = new Paint(); + final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); + final RectF rectF = new RectF(rect); + final float roundPx = pixels; + + paint.setAntiAlias(true); + canvas.drawARGB(0, 0, 0, 0); + paint.setColor(color); + canvas.drawRoundRect(rectF, roundPx, roundPx, paint); + + paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN)); + canvas.drawBitmap(bitmap, rect, rect, paint); + + return output; + } + public void setSupportsHighRes(boolean value) { mSupportsHighRes = value; } -- GitLab From 0242d1c413212c0e9bb607f53661c39773b1667d Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Tue, 5 Jan 2021 10:30:29 +0530 Subject: [PATCH 04/13] Changes done in MasterImage.java --- .../filtershow/imageshow/MasterImage.java | 25 +------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java b/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java index 3e8a923d6..5d92b8ee1 100644 --- a/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java +++ b/src/com/android/gallery3d/filtershow/imageshow/MasterImage.java @@ -325,8 +325,7 @@ public class MasterImage implements RenderingRequestCaller { int sw = SMALL_BITMAP_DIM; int sh = (int) (sw * (float) mOriginalBitmapLarge.getHeight() / mOriginalBitmapLarge .getWidth()); - Bitmap temp = Bitmap.createScaledBitmap(mOriginalBitmapLarge, sw, sh, true); - mOriginalBitmapSmall = getRoundedCornerBitmap(temp,50); + mOriginalBitmapSmall = Bitmap.createScaledBitmap(mOriginalBitmapLarge, sw, sh, true); Log.d(TAG, "MasterImage.loadBitmap(): OriginalBitmapLarge.WH is (" + mOriginalBitmapLarge.getWidth() + ", " + mOriginalBitmapLarge.getHeight() + "), OriginalBitmapSmall.WH is (" + sw + ", " + sh + "), originalBounds is " + originalBounds.toString()); @@ -335,28 +334,6 @@ public class MasterImage implements RenderingRequestCaller { return true; } - public static Bitmap getRoundedCornerBitmap(Bitmap bitmap, int pixels) { - Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap - .getHeight(), Bitmap.Config.ARGB_8888); - Canvas canvas = new Canvas(output); - - final int color = 0xff424242; - final Paint paint = new Paint(); - final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); - final RectF rectF = new RectF(rect); - final float roundPx = pixels; - - paint.setAntiAlias(true); - canvas.drawARGB(0, 0, 0, 0); - paint.setColor(color); - canvas.drawRoundRect(rectF, roundPx, roundPx, paint); - - paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN)); - canvas.drawBitmap(bitmap, rect, rect, paint); - - return output; - } - public void setSupportsHighRes(boolean value) { mSupportsHighRes = value; } -- GitLab From 49a5d0588f43cf07878a7da9b6952869e4b31ac1 Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Wed, 13 Jan 2021 09:25:18 +0530 Subject: [PATCH 05/13] change background color gallery --- res/values/colors.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/res/values/colors.xml b/res/values/colors.xml index 347ccb7d6..6ac53f7fa 100755 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -15,7 +15,8 @@ --> - @lineageos.platform:color/color_default_primary_text + + @color/white @color/default_background -- GitLab From 9a216aa214447ca6984c278c81f1829715afaef3 Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Wed, 13 Jan 2021 10:19:19 +0530 Subject: [PATCH 06/13] change background color gallery and text color --- res/values/cm_colors.xml | 7 ++++-- res/values/colors.xml | 24 ++++++++++++------- src/com/android/gallery3d/app/AlbumPage.java | 3 ++- .../android/gallery3d/app/AlbumSetPage.java | 3 ++- .../android/gallery3d/app/TimeLinePage.java | 3 ++- 5 files changed, 26 insertions(+), 14 deletions(-) diff --git a/res/values/cm_colors.xml b/res/values/cm_colors.xml index 27ecb2482..2f3b49f5f 100644 --- a/res/values/cm_colors.xml +++ b/res/values/cm_colors.xml @@ -15,8 +15,11 @@ --> - @lineageos.platform:color/color_default_primary_text - @lineageos.platform:color/color_default_primary_text + + + + #333333 + #000000 #33b5e5 #fafafa diff --git a/res/values/colors.xml b/res/values/colors.xml index 6ac53f7fa..75a617a6c 100755 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -17,10 +17,11 @@ @color/white - - @color/default_background - @color/default_background + @color/white + @color/black_transparent_3 + + @color/black_transparent_4 @color/white @color/white @@ -86,10 +87,15 @@ @color/black @color/black #009688 - @color/white - @color/white - @color/default_background - - @lineageos.platform:color/color_default_primary - @lineageos.platform:color/color_default_blue1 + @color/black_transparent_4 + @color/black_transparent_3 + @color/white + + + + + + + #747474 + @color/white diff --git a/src/com/android/gallery3d/app/AlbumPage.java b/src/com/android/gallery3d/app/AlbumPage.java index 8c3758450..dc7976320 100644 --- a/src/com/android/gallery3d/app/AlbumPage.java +++ b/src/com/android/gallery3d/app/AlbumPage.java @@ -988,7 +988,8 @@ public class AlbumPage extends ActivityState implements GalleryActionBar.Cluster if (tvEmptyAlbum == null) { tvEmptyAlbum = new TextView(mActivity); tvEmptyAlbum.setText(R.string.tvEmptyVideos); - tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); + tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000")); +// tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); tvEmptyAlbum.setGravity(Gravity.CENTER); tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20); RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams( diff --git a/src/com/android/gallery3d/app/AlbumSetPage.java b/src/com/android/gallery3d/app/AlbumSetPage.java index e61c94184..0fc4c6575 100755 --- a/src/com/android/gallery3d/app/AlbumSetPage.java +++ b/src/com/android/gallery3d/app/AlbumSetPage.java @@ -260,7 +260,8 @@ public class AlbumSetPage extends ActivityState implements if (tvEmptyAlbum == null) { tvEmptyAlbum = new TextView(mActivity); tvEmptyAlbum.setText(R.string.tvEmptyAlbum); - tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); + tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000")); +// tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); tvEmptyAlbum.setGravity(Gravity.CENTER); tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20); tvEmptyAlbum.setId(R.id.empty_album); diff --git a/src/com/android/gallery3d/app/TimeLinePage.java b/src/com/android/gallery3d/app/TimeLinePage.java index d9a4eb9c6..ff92e4811 100755 --- a/src/com/android/gallery3d/app/TimeLinePage.java +++ b/src/com/android/gallery3d/app/TimeLinePage.java @@ -898,7 +898,8 @@ public class TimeLinePage extends ActivityState implements if (tvEmptyAlbum == null) { tvEmptyAlbum = new TextView(mActivity); tvEmptyAlbum.setText(R.string.tvEmptyAlbum); - tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); + tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000")); +// tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); tvEmptyAlbum.setGravity(Gravity.CENTER); tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20); RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams( -- GitLab From 7933e409ef1692b184228ccd99ec11aed8dc5e0f Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Fri, 15 Jan 2021 10:03:14 +0530 Subject: [PATCH 07/13] change background color gallery and text color --- res/values/cm_colors.xml | 11 ++++---- res/values/colors.xml | 26 +++++++------------ .../android/gallery3d/app/TimeLinePage.java | 4 +-- 3 files changed, 18 insertions(+), 23 deletions(-) diff --git a/res/values/cm_colors.xml b/res/values/cm_colors.xml index 2f3b49f5f..ea4ff2d01 100644 --- a/res/values/cm_colors.xml +++ b/res/values/cm_colors.xml @@ -15,12 +15,13 @@ --> - - - - #333333 - #000000 + @lineageos.platform:color/color_default_foreground + @lineageos.platform:color/color_default_foreground + @lineageos.platform:color/color_default_primary_text #33b5e5 + + + #fafafa #212121 diff --git a/res/values/colors.xml b/res/values/colors.xml index 75a617a6c..62e7ec9be 100755 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -15,12 +15,10 @@ --> - - @color/white + @lineageos.platform:color/color_default_background - @color/white + @color/default_background @color/black_transparent_3 - @color/black_transparent_4 @color/white @@ -62,7 +60,7 @@ @color/black #DD777777 #FFC5C5C5 - #40000000 + #40000000default_background @color/accent #ff282828 #FF2E2E2E @@ -87,15 +85,11 @@ @color/black @color/black #009688 - @color/black_transparent_4 - @color/black_transparent_3 - @color/white - - - - - - - #747474 - @color/white + @color/color_default_primary_text + @color/color_default_primary_text + @color/primary + + @lineageos.platform:color/color_default_primary + @lineageos.platform:color/color_default_blue1 + diff --git a/src/com/android/gallery3d/app/TimeLinePage.java b/src/com/android/gallery3d/app/TimeLinePage.java index ff92e4811..e3560a105 100755 --- a/src/com/android/gallery3d/app/TimeLinePage.java +++ b/src/com/android/gallery3d/app/TimeLinePage.java @@ -898,8 +898,8 @@ public class TimeLinePage extends ActivityState implements if (tvEmptyAlbum == null) { tvEmptyAlbum = new TextView(mActivity); tvEmptyAlbum.setText(R.string.tvEmptyAlbum); - tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000")); -// tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.white, null)); +// tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000")); + tvEmptyAlbum.setTextColor(galleryRoot.getResources().getColor(R.color.color_default_primary_text, null)); tvEmptyAlbum.setGravity(Gravity.CENTER); tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20); RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams( -- GitLab From a6bab572e17de1ebbc353c957590fa69192ab0ad Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Fri, 15 Jan 2021 10:15:54 +0530 Subject: [PATCH 08/13] change background color gallery and text color --- res/values/colors.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/values/colors.xml b/res/values/colors.xml index 62e7ec9be..01ce00978 100755 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -60,7 +60,7 @@ @color/black #DD777777 #FFC5C5C5 - #40000000default_background + #40000000 @color/accent #ff282828 #FF2E2E2E -- GitLab From e1a9a0e4f226b6011936bf213740ae068185a66a Mon Sep 17 00:00:00 2001 From: Mohit Mali Date: Fri, 15 Jan 2021 17:04:50 +0530 Subject: [PATCH 09/13] Change menu icon color, Toolbar text color, bottom nav bar selection and disable color --- res/drawable/more.xml | 2 +- res/values/cm_colors.xml | 1 + res/values/colors.xml | 3 ++- res/values/styles.xml | 7 +++++-- src/com/android/gallery3d/app/AlbumPage.java | 6 +++--- src/com/android/gallery3d/app/AlbumSetPage.java | 6 +++--- src/com/android/gallery3d/app/TimeLinePage.java | 2 +- 7 files changed, 16 insertions(+), 11 deletions(-) diff --git a/res/drawable/more.xml b/res/drawable/more.xml index d33979f10..4be6b4b7e 100644 --- a/res/drawable/more.xml +++ b/res/drawable/more.xml @@ -34,5 +34,5 @@ android:viewportHeight="24.0"> + android:fillColor="@color/black_icon"/> diff --git a/res/values/cm_colors.xml b/res/values/cm_colors.xml index ea4ff2d01..d47b6dcca 100644 --- a/res/values/cm_colors.xml +++ b/res/values/cm_colors.xml @@ -25,6 +25,7 @@ #fafafa #212121 + #CC000000 #424242 diff --git a/res/values/colors.xml b/res/values/colors.xml index 01ce00978..984537fd8 100755 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -85,11 +85,12 @@ @color/black @color/black #009688 + #808080 @color/color_default_primary_text @color/color_default_primary_text @color/primary - @lineageos.platform:color/color_default_primary + @color/disable_tab @lineageos.platform:color/color_default_blue1 diff --git a/res/values/styles.xml b/res/values/styles.xml index ebc975da9..44f89d910 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -32,12 +32,13 @@ @null @null true - @android:color/transparent + @color/primary true false true @style/WhiteOverflow @android:color/transparent + true + + + + - - - -