Skip to content

Commit 375fb27

Browse files
authored
fix standalone maneuver view appearance when drop-in ui is integrated (#6810)
1 parent bbb615b commit 375fb27

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Mapbox welcomes participation and contributions from everyone.
66
#### Features
77
#### Bug fixes and improvements
88
- Fixed an issue with `NavigationView` that caused info panel to shrink in landscape mode with a full screen theme. [#6811](https://github.com/mapbox/mapbox-navigation-android/pull/6811)
9+
- Fixed standalone `MapboxManeuverView` appearance when the app also integrates Drop-In UI. [#6810](https://github.com/mapbox/mapbox-navigation-android/pull/6810)
910

1011
## Mapbox Navigation SDK 2.10.0-rc.1 - 16 December, 2022
1112
### Changelog

examples/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<string name="description_signboard" translatable="false">Demonstrates the use of signboard API.</string>
1212
<string name="title_junction" translatable="false">Junction Example</string>
1313
<string name="description_junction" translatable="false">Demonstrates the use of junction API.</string>
14-
<string name="title_trip_progress" translatable="false">TripProgess Example</string>
14+
<string name="title_trip_progress" translatable="false">TripProgress Example</string>
1515
<string name="description_trip_progress" translatable="false">Demonstrates the use of trip progress API.</string>
1616
<string name="title_maneuver" translatable="false">Maneuver Example</string>
1717
<string name="description_maneuver" translatable="false">Demonstrates the use of maneuver API.</string>

libnavui-maneuver/src/main/res/values-night/colors.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<color name="mapbox_main_maneuver_background_color">@color/colorSecondary</color>
99
<color name="mapbox_sub_maneuver_background_color">@color/colorSecondaryVariant</color>
1010
<color name="mapbox_upcoming_maneuver_background_color">@color/colorSecondaryVariant</color>
11-
<color name="mapbox_exit_text_color">@android:color/black</color>
1211
<color name="mapbox_turn_icon_color">@color/colorOnSecondary</color>
1312
<color name="mapbox_turn_icon_shadow_color">#A8A8A8</color>
1413
</resources>

libnavui-maneuver/src/main/res/values/colors.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<color name="mapbox_main_maneuver_background_color">@color/colorSecondary</color>
99
<color name="mapbox_sub_maneuver_background_color">@color/colorSecondaryVariant</color>
1010
<color name="mapbox_upcoming_maneuver_background_color">@color/colorSecondaryVariant</color>
11-
<color name="mapbox_exit_text_color">@android:color/black</color>
11+
<color name="mapbox_exit_text_color">@color/colorOnSurface</color>
1212
<color name="mapbox_exit_background_color">@color/colorSurface</color>
1313
<color name="mapbox_exit_background_border_color">@color/colorOnSurface</color>
1414
<color name="mapbox_exit_drawable_color">@color/colorOnSurface</color>

0 commit comments

Comments
 (0)