拖动、滑动和甩动

draggable 修饰符是单方向拖动手势的高级入口点,并以像素为单位报告拖动距离。

需要注意的是,此修饰符类似于 scrollable,因为它只检测手势。您需要保存状态并在屏幕上表示它,例如,通过 offset 修饰符移动元素。

@Composable
private fun DraggableText() {
    var offsetX by remember { mutableStateOf(0f) }
    Text(
        modifier = Modifier
            .offset { IntOffset(offsetX.roundToInt(), 0) }
            .draggable(
                orientation = Orientation.Horizontal,
                state = rememberDraggableState { delta ->
                    offsetX += delta
                }
            ),
        text = "Drag me!"
    )
}

如果您需要控制整个拖动手势,请考虑使用拖动手势检测器,方法是使用 pointerInput 修饰符。

@Composable
private fun DraggableTextLowLevel() {
    Box(modifier = Modifier.fillMaxSize()) {
        var offsetX by remember { mutableStateOf(0f) }
        var offsetY by remember { mutableStateOf(0f) }

        Box(
            Modifier
                .offset { IntOffset(offsetX.roundToInt(), offsetY.roundToInt()) }
                .background(Color.Blue)
                .size(50.dp)
                .pointerInput(Unit) {
                    detectDragGestures { change, dragAmount ->
                        change.consume()
                        offsetX += dragAmount.x
                        offsetY += dragAmount.y
                    }
                }
        )
    }
}

A UI element being dragged by a finger press

滑动

swipeable 修饰符允许您拖动元素,当释放时,这些元素会动画化到某个方向上定义的通常两个或多个锚点。此功能的常见用法是实现“滑动以关闭”模式。

需要注意的是,此修饰符不会移动元素,它只检测手势。您需要保存状态并在屏幕上表示它,例如,通过 offset 修饰符移动元素。

swipeable 修饰符需要可滑动状态,可以使用 rememberSwipeableState() 创建和记住此状态。此状态还提供了一组有用的方法,用于以编程方式将动画切换到锚点(请参阅 snapToanimateToperformFlingperformDrag),以及用于观察拖动进度的属性。

可以将滑动手势配置为具有不同的阈值类型,例如 FixedThreshold(Dp)FractionalThreshold(Float),并且对于每个锚点从到组合,它们都可以不同。

为了获得更大的灵活性,您可以在滑动超出边界时配置 resistance,以及 velocityThreshold,即使未达到位置 thresholds,它也会将滑动动画切换到下一个状态。

@OptIn(ExperimentalMaterialApi::class)
@Composable
private fun SwipeableSample() {
    val width = 96.dp
    val squareSize = 48.dp

    val swipeableState = rememberSwipeableState(0)
    val sizePx = with(LocalDensity.current) { squareSize.toPx() }
    val anchors = mapOf(0f to 0, sizePx to 1) // Maps anchor points (in px) to states

    Box(
        modifier = Modifier
            .width(width)
            .swipeable(
                state = swipeableState,
                anchors = anchors,
                thresholds = { _, _ -> FractionalThreshold(0.3f) },
                orientation = Orientation.Horizontal
            )
            .background(Color.LightGray)
    ) {
        Box(
            Modifier
                .offset { IntOffset(swipeableState.offset.value.roundToInt(), 0) }
                .size(squareSize)
                .background(Color.DarkGray)
        )
    }
}

A UI element responding to a swipe gesture