繁体   English   中英

如何在 Jetpack compose 中检测 HorizontalPager 中的滑动?

[英]How to detect swipe in HorizontalPager in Jetpack compose?

如何在我的 HorizontalPager HorizontalPager()?

val pagerState = rememberPagerState(initialPage = 0)
HorizontalPager(count = TabCategory.values().size, state = pagerState) { index ->
                                Box(
                                    modifier = Modifier
                                        .fillMaxSize()
                                        .background(MaterialTheme.colors.onBackground)
                                ) {
                                    when (TabCategory.values()[index]) {
                                        TabCategory.Opinion -> { }
                                        TabCategory.Information -> { }
                                        TabCategory.Videos -> { }
                                    }
                                }
                            }

在您的视图模型中,将 pagerState 传递给 HorizontalPager:

class MyViewModel : ViewModel() {

    val pagerState = PagerState()

    init {
        viewModelScope.launch {
            snapshotFlow { pagerState.currentPage }.collect { page ->
                // Page is the index of the page being swiped.
            }
        }
    }
}

在您的可组合中,使用 pagerState:

HorizontalPager(
  state = myViewModel.pagerState,
) { page ->

}

PagerState有一个跟踪这些内容的InteractionSource collectIsDraggedAsState方法返回一个您可以订阅的State<Boolean> ,它通过.value公开其当前值。

这似乎很好地测试了。

@Composable
fun ExampleComposable(){
    val pagerState=rememberPagerState()
    val isDragged=pagerState.interactionSource.collectIsDraggedAsState()
    HorizontalPager(count = injector.snippets.size,
    state = pagerState,
    ){index->
         MyFancyExampleComposable(index)
         if (isDragged.value){
              respondToPageSwipeOrPartialPageSwipe()
            }

     }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM