Skip to content

Commit 934e668

Browse files
authored
fix road label position not updating in some cases (#6508)
1 parent 906f53c commit 934e668

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

CHANGELOG.md

+1
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
- Improved experience in tunnels and reduced the likelihood of losing road edge matching candidates. [#6510](https://github.com/mapbox/mapbox-navigation-android/pull/6510)
9+
- Fixed an issue with `NavigationView` that caused road label position to not update in some cases. [#6508](https://github.com/mapbox/mapbox-navigation-android/pull/6508)
910

1011
## Mapbox Navigation SDK 2.9.0-beta.3 - 21 October, 2022
1112
### Changelog

libnavui-dropin/src/main/java/com/mapbox/navigation/dropin/infopanel/InfoPanelCoordinator.kt

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package com.mapbox.navigation.dropin.infopanel
22

33
import android.view.View
44
import android.view.ViewGroup
5+
import android.view.ViewTreeObserver
56
import androidx.constraintlayout.widget.Guideline
67
import androidx.core.graphics.Insets
78
import androidx.core.view.ViewCompat
@@ -48,17 +49,17 @@ internal class InfoPanelCoordinator(
4849

4950
@OptIn(ExperimentalCoroutinesApi::class)
5051
private val infoPanelTop = callbackFlow {
51-
val onLayoutChangeListener = View.OnLayoutChangeListener { _, _, _, _, _, _, _, _, _ ->
52+
val onGlobalLayoutListener = ViewTreeObserver.OnGlobalLayoutListener {
5253
trySend(infoPanel.top)
5354
}
54-
val parent = infoPanel.parent as View
55-
parent.addOnLayoutChangeListener(onLayoutChangeListener)
56-
awaitClose { parent.removeOnLayoutChangeListener(onLayoutChangeListener) }
55+
val viewTreeObserver = infoPanel.viewTreeObserver
56+
viewTreeObserver.addOnGlobalLayoutListener(onGlobalLayoutListener)
57+
awaitClose { viewTreeObserver.removeOnGlobalLayoutListener(onGlobalLayoutListener) }
5758
}.distinctUntilChanged()
5859

5960
init {
6061
infoPanel.addOnLayoutChangeListener(FixBottomSheetLayoutWhenHidden(infoPanel, behavior))
61-
behavior.setPeekHeight(context.styles.infoPanelPeekHeight.value, true)
62+
behavior.peekHeight = context.styles.infoPanelPeekHeight.value
6263
behavior.hide()
6364
}
6465

@@ -94,7 +95,7 @@ internal class InfoPanelCoordinator(
9495
}
9596
}
9697
coroutineScope.launch {
97-
bottomSheetPeekHeight().collect { behavior.setPeekHeight(it, true) }
98+
bottomSheetPeekHeight().collect { behavior.peekHeight = it }
9899
}
99100
coroutineScope.launch {
100101
infoPanelTop.collect { updateGuidelinePosition() }

0 commit comments

Comments
 (0)