From 44a608012a5b0f49051dcbc254829d3f70decce5 Mon Sep 17 00:00:00 2001 From: Dzmitry Yarmolenka Date: Wed, 14 Jul 2021 15:58:10 +0200 Subject: [PATCH] [android] Fixed broken invisible chevron for BottomSheet in day theme on PlacePageView. Signed-off-by: Dzmitry Yarmolenka --- android/res/values/themes-attrs.xml | 1 + android/res/values/themes-base.xml | 2 ++ .../com/mapswithme/maps/widget/placepage/PlacePageUtils.java | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/android/res/values/themes-attrs.xml b/android/res/values/themes-attrs.xml index dc13e91467..abe467d2a1 100644 --- a/android/res/values/themes-attrs.xml +++ b/android/res/values/themes-attrs.xml @@ -16,6 +16,7 @@ + diff --git a/android/res/values/themes-base.xml b/android/res/values/themes-base.xml index 13d73827bd..8e05399a2b 100644 --- a/android/res/values/themes-base.xml +++ b/android/res/values/themes-base.xml @@ -35,6 +35,7 @@ @color/black_12 @color/yellow @color/icon_tint_light + @color/black_12 @color/text_dark_hint @color/divider @@ -212,6 +213,7 @@ @color/white_12 @color/yellow @color/icon_tint_light_night + @color/white_12 @color/text_light_hint @color/divider_night diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageUtils.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageUtils.java index d52e7d870e..ae92c18cdb 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageUtils.java +++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageUtils.java @@ -86,7 +86,7 @@ class PlacePageUtils return; Drawable drawable = Graphics.tint(bottomSheet.getContext(), drawableId, - R.attr.colorOnPrimary); /// TODO OMG + R.attr.chevronTintColor); img.setImageDrawable(drawable); }