android ModalBottomSheetLayout在Compose 1.4.0及更高版本中跳跃

pdkcd3nj  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(137)

我在寻找关闭这种“跳跃”的可能性。
https://www.veed.io/view/0f7585b4-529f-4700-8dc2-15788164fa44
我在1.4.0以下的Compose版本中没有看到它。我的代码:

  1. class MainActivity : ComponentActivity() {
  2. override fun onCreate(savedInstanceState: Bundle?) {
  3. super.onCreate(savedInstanceState)
  4. setContent {
  5. val scope = rememberCoroutineScope()
  6. val sheetState = rememberModalBottomSheetState(ModalBottomSheetValue.Hidden)
  7. ModalBottomSheetLayout(
  8. sheetState = sheetState,
  9. sheetContent = {
  10. Text(
  11. modifier = Modifier
  12. .fillMaxWidth()
  13. .height(200.dp),
  14. text = "CONTENT"
  15. )
  16. }
  17. ) {
  18. Button(onClick = { scope.launch { sheetState.show() } }) {
  19. Text(text = "MODAL")
  20. }
  21. }
  22. }
  23. }
  24. }

字符串
我在寻找关闭这个“跳跃功能”的可能性。
PS.看起来已经有一个问题了https://issuetracker.google.com/issues/285847707,但也许有人有一个变通办法?

tuwxkamq

tuwxkamq1#

在sheetContent中尝试使用Modifier.nestedScroll的代码,不知道Google需要多长时间才能解决这个问题,所以我必须自己解决,但是这没有任何边缘效果,滚动到边缘时似乎不是很好。

  1. package com.lalilu.component.extension
  2. import androidx.compose.runtime.Composable
  3. import androidx.compose.runtime.remember
  4. import androidx.compose.ui.geometry.Offset
  5. import androidx.compose.ui.input.nestedscroll.NestedScrollConnection
  6. import androidx.compose.ui.input.nestedscroll.NestedScrollSource
  7. import androidx.compose.ui.unit.Velocity
  8. import kotlin.math.abs
  9. class BottomSheetNestedScrollInterceptor : NestedScrollConnection {
  10. private var arrivedBoundarySource: NestedScrollSource? = null
  11. override fun onPreScroll(
  12. available: Offset,
  13. source: NestedScrollSource
  14. ): Offset {
  15. // Reset the state variable
  16. if (source == NestedScrollSource.Drag && arrivedBoundarySource == NestedScrollSource.Fling) {
  17. arrivedBoundarySource = null
  18. }
  19. return super.onPreScroll(available, source)
  20. }
  21. override fun onPostScroll(
  22. consumed: Offset,
  23. available: Offset,
  24. source: NestedScrollSource
  25. ): Offset {
  26. // The sub-layout can't consume completely,
  27. // which means that the boundary has been reached.
  28. if (arrivedBoundarySource == null && abs(available.y) > 0) {
  29. arrivedBoundarySource = source
  30. }
  31. // Decide whether to consume according to the sub-layout
  32. // consumption when reaching the boundary.
  33. if (arrivedBoundarySource == NestedScrollSource.Fling) {
  34. return available
  35. }
  36. return Offset.Zero
  37. }
  38. override suspend fun onPostFling(
  39. consumed: Velocity,
  40. available: Velocity
  41. ): Velocity {
  42. arrivedBoundarySource = null
  43. return super.onPostFling(consumed, available)
  44. }
  45. }
  46. @Composable
  47. fun rememberBottomSheetNestedScrollInterceptor(): BottomSheetNestedScrollInterceptor {
  48. return remember { BottomSheetNestedScrollInterceptor() }
  49. }

字符串

展开查看全部

相关问题