คำแนะนำโดยย่อเกี่ยวกับภาพเคลื่อนไหวใน Compose

การเขียนมีกลไกภาพเคลื่อนไหวในตัวมากมาย และอาจทำให้ รู้ว่าต้องเลือกอันไหน ด้านล่างนี้คือรายการกรณีการใช้งานภาพเคลื่อนไหวที่พบบ่อย สำหรับ ข้อมูลโดยละเอียดเพิ่มเติมเกี่ยวกับชุดตัวเลือก API ต่างๆ ทั้งหมดที่มีให้ใช้งาน โปรดอ่านเอกสารประกอบเกี่ยวกับภาพเคลื่อนไหวของ Compose ฉบับเต็ม

ทำให้คุณสมบัติที่ประกอบได้ทั่วไปเคลื่อนไหว

Compose มี API ที่ใช้ง่ายซึ่งช่วยให้คุณแก้โจทย์ ของภาพเคลื่อนไหว ส่วนนี้จะสาธิตวิธีสร้างภาพเคลื่อนไหว ของ Composable

ภาพเคลื่อนไหวที่ปรากฏ / หายไป

วันที่ Composable สีเขียวแสดงและซ่อนตัวเอง
รูปที่ 1 การทำให้รายการมีลักษณะและการหายไปในคอลัมน์เป็นภาพเคลื่อนไหว

ใช้ AnimatedVisibility เพื่อซ่อนหรือแสดง Composable เด็กๆ ในวงการ AnimatedVisibility สามารถใช้ Modifier.animateEnterExit() สำหรับการป้อนของตนเอง หรือออกจากการเปลี่ยน

var visible by remember {
    mutableStateOf(true)
}
// Animated visibility will eventually remove the item from the composition once the animation has finished.
AnimatedVisibility(visible) {
    // your composable here
    // ...
}

พารามิเตอร์การเข้าและออกของ AnimatedVisibility ช่วยให้คุณกำหนดค่าวิธี Composable จะทำงานเมื่อปรากฏขึ้นและหายไป อ่าน ฉบับเต็ม สำหรับข้อมูลเพิ่มเติม

อีกตัวเลือกหนึ่งสำหรับการทำให้การมองเห็น Composable เคลื่อนไหวคือการทำให้แท็ก เมื่อเวลาผ่านไปโดยใช้ animateFloatAsState:

var visible by remember {
    mutableStateOf(true)
}
val animatedAlpha by animateFloatAsState(
    targetValue = if (visible) 1.0f else 0f,
    label = "alpha"
)
Box(
    modifier = Modifier
        .size(200.dp)
        .graphicsLayer {
            alpha = animatedAlpha
        }
        .clip(RoundedCornerShape(8.dp))
        .background(colorGreen)
        .align(Alignment.TopCenter)
) {
}

อย่างไรก็ตาม การเปลี่ยนอัลฟ่ามาพร้อมกับข้อควรระวังว่า Composable นั้นยังคงอยู่ ในการเรียบเรียงและยังคงครอบคลุมพื้นที่ที่วางองค์ประกอบไว้ ช่วงเวลานี้ อาจทำให้โปรแกรมอ่านหน้าจอและกลไกการเข้าถึงอื่นๆ รายการบนหน้าจอ ในทางกลับกัน AnimatedVisibility จะนำออกในท้ายที่สุด จากการเรียบเรียง

วันที่ การทำให้อัลฟ่าของ Composable เคลื่อนไหว
รูปที่ 2 การทำให้อัลฟ่าของ Composable เคลื่อนไหว

ทำให้สีพื้นหลังเคลื่อนไหว

วันที่ เขียนได้ด้วยสีพื้นหลังที่เปลี่ยนไปเรื่อยๆ เป็นภาพเคลื่อนไหว ซึ่งสีจะค่อยๆ จางลงไปเอง
รูปที่ 3 ภาพเคลื่อนไหวสีพื้นหลังของ Composable

val animatedColor by animateColorAsState(
    if (animateBackgroundColor) colorGreen else colorBlue,
    label = "color"
)
Column(
    modifier = Modifier.drawBehind {
        drawRect(animatedColor)
    }
) {
    // your composable here
}

ตัวเลือกนี้มีประสิทธิภาพมากกว่าการใช้ Modifier.background() Modifier.background() ใช้ได้กับการตั้งค่าสีแบบภาพเดียว แต่เมื่อ ทำให้สีเคลื่อนไหวเมื่อเวลาผ่านไป ซึ่งอาจทําให้การจัดองค์ประกอบใหม่มีมากกว่า ตามความจำเป็น

หากต้องการให้สีพื้นหลังเคลื่อนไหวได้ไม่รู้จบ โปรดดูการสร้างภาพเคลื่อนไหวซ้ำๆ

ทำให้ขนาดของ Composable เคลื่อนไหว

วันที่ ภาพเคลื่อนไหวที่ประกอบกันได้สีเขียวทำให้การเปลี่ยนขนาดดำเนินไปอย่างลื่นไหล
รูปที่ 4 สามารถประกอบกันได้ได้อย่างราบรื่นซึ่งสร้างภาพเคลื่อนไหวระหว่างขนาดเล็กกับขนาดใหญ่

Compose ช่วยให้คุณทําให้ขนาดของ Composable เคลื่อนไหวได้ใน 2-3 วิธี ใช้ animateContentSize() สำหรับภาพเคลื่อนไหวระหว่างการเปลี่ยนขนาดที่เขียนได้ด้วยที่ประกอบกันได้

ตัวอย่างเช่น หากคุณมีช่องที่มีข้อความซึ่งสามารถขยายจาก 1 เป็น หลายบรรทัดที่คุณสามารถใช้ Modifier.animateContentSize() เพื่อให้ การเปลี่ยน:

var expanded by remember { mutableStateOf(false) }
Box(
    modifier = Modifier
        .background(colorBlue)
        .animateContentSize()
        .height(if (expanded) 400.dp else 200.dp)
        .fillMaxWidth()
        .clickable(
            interactionSource = remember { MutableInteractionSource() },
            indication = null
        ) {
            expanded = !expanded
        }

) {
}

คุณยังใช้ AnimatedContent พร้อม SizeTransform เพื่ออธิบายได้ด้วย ควรเปลี่ยนขนาดอย่างไร

ภาพเคลื่อนไหวตำแหน่งของ Composable

วันที่ เขียนได้ด้วยสีเขียวที่ประกอบกันได้โดยแสดงการเคลื่อนไหวลงและไปทางขวาอย่างราบรื่น
รูปที่ 5 การเคลื่อนไหวที่ประกอบกันได้

หากต้องการทำให้ตำแหน่งของ Composable เคลื่อนไหว ให้ใช้ Modifier.offset{ } ร่วมกับ animateIntOffsetAsState()

var moved by remember { mutableStateOf(false) }
val pxToMove = with(LocalDensity.current) {
    100.dp.toPx().roundToInt()
}
val offset by animateIntOffsetAsState(
    targetValue = if (moved) {
        IntOffset(pxToMove, pxToMove)
    } else {
        IntOffset.Zero
    },
    label = "offset"
)

Box(
    modifier = Modifier
        .offset {
            offset
        }
        .background(colorBlue)
        .size(100.dp)
        .clickable(
            interactionSource = remember { MutableInteractionSource() },
            indication = null
        ) {
            moved = !moved
        }
)

หากต้องการให้แน่ใจว่า Composable ไม่ได้วาดทับหรืออยู่ใต้ส่วนอื่น Composable เมื่อทำให้ตำแหน่งหรือขนาดเคลื่อนไหว ให้ใช้ Modifier.layout{ } ช่วงเวลานี้ ตัวแก้ไขจะส่งผลการเปลี่ยนแปลงขนาดและตำแหน่งไปยังระดับบน ซึ่งจะส่งผลต่อ กับเด็กคนอื่นๆ

เช่น หากคุณย้าย Box ภายใน Column และแท็กย่อยอื่นๆ ที่ต้องเคลื่อนที่เมื่อ Box ขยับ ให้ใส่ข้อมูลออฟเซ็ตด้วย Modifier.layout{ } ดังนี้

var toggled by remember {
    mutableStateOf(false)
}
val interactionSource = remember {
    MutableInteractionSource()
}
Column(
    modifier = Modifier
        .padding(16.dp)
        .fillMaxSize()
        .clickable(indication = null, interactionSource = interactionSource) {
            toggled = !toggled
        }
) {
    val offsetTarget = if (toggled) {
        IntOffset(150, 150)
    } else {
        IntOffset.Zero
    }
    val offset = animateIntOffsetAsState(
        targetValue = offsetTarget, label = "offset"
    )
    Box(
        modifier = Modifier
            .size(100.dp)
            .background(colorBlue)
    )
    Box(
        modifier = Modifier
            .layout { measurable, constraints ->
                val offsetValue = if (isLookingAhead) offsetTarget else offset.value
                val placeable = measurable.measure(constraints)
                layout(placeable.width + offsetValue.x, placeable.height + offsetValue.y) {
                    placeable.placeRelative(offsetValue)
                }
            }
            .size(100.dp)
            .background(colorGreen)
    )
    Box(
        modifier = Modifier
            .size(100.dp)
            .background(colorBlue)
    )
}

วันที่ กล่องที่ 2 ซึ่งมีช่องที่ 2 ทำให้ตำแหน่ง X,Y เคลื่อนไหว และช่องที่ 3 ตอบสนองด้วยการเลื่อนตัวเองด้วยจำนวน Y เช่นกัน
รูปที่ 6 กำลังสร้างภาพเคลื่อนไหวกับ Modifier.layout{ }

ทำให้ระยะห่างจากขอบของ Composable เคลื่อนไหว

วันที่ Composable สีเขียวมีขนาดเล็กลงและใหญ่ขึ้นเมื่อคลิก โดยมีระยะห่างจากขอบที่เป็นภาพเคลื่อนไหว
รูปที่ 7 สามารถเขียนได้โดยมีระยะห่างจากขอบที่เคลื่อนไหว

หากต้องการสร้างภาพเคลื่อนไหวให้กับระยะห่างจากขอบของ Composable ให้ใช้ animateDpAsState ร่วมกับ Modifier.padding():

var toggled by remember {
    mutableStateOf(false)
}
val animatedPadding by animateDpAsState(
    if (toggled) {
        0.dp
    } else {
        20.dp
    },
    label = "padding"
)
Box(
    modifier = Modifier
        .aspectRatio(1f)
        .fillMaxSize()
        .padding(animatedPadding)
        .background(Color(0xff53D9A1))
        .clickable(
            interactionSource = remember { MutableInteractionSource() },
            indication = null
        ) {
            toggled = !toggled
        }
)

สร้างภาพเคลื่อนไหวของ Composable

รูปที่ 8 ระดับความสูงของ Composable ที่เคลื่อนไหวเมื่อคลิก

หากต้องการสร้างการเคลื่อนไหวของ Composable ให้ใช้ animateDpAsState ร่วมกับ Modifier.graphicsLayer{ } สำหรับการเปลี่ยนแปลงระดับความสูงครั้งเดียว ให้ใช้ Modifier.shadow() ถ้ากำลังทำให้เงาเคลื่อนไหว ตัวแก้ไข Modifier.graphicsLayer{ } เป็นตัวเลือกที่มีประสิทธิภาพมากกว่า

val mutableInteractionSource = remember {
    MutableInteractionSource()
}
val pressed = mutableInteractionSource.collectIsPressedAsState()
val elevation = animateDpAsState(
    targetValue = if (pressed.value) {
        32.dp
    } else {
        8.dp
    },
    label = "elevation"
)
Box(
    modifier = Modifier
        .size(100.dp)
        .align(Alignment.Center)
        .graphicsLayer {
            this.shadowElevation = elevation.value.toPx()
        }
        .clickable(interactionSource = mutableInteractionSource, indication = null) {
        }
        .background(colorGreen)
) {
}

หรือใช้ Card Composable และตั้งค่าพร็อพเพอร์ตี้ระดับความสูงเป็น ค่าที่ต่างกันต่อรัฐ

ทำให้การปรับขนาดข้อความ การแปล หรือการหมุนเป็นภาพเคลื่อนไหว

วันที่ ข้อความที่เขียนได้ด้วย Compose ได้
รูปที่ 9 ข้อความเคลื่อนไหวอย่างราบรื่นระหว่าง 2 ขนาด

เมื่อทำให้การปรับขนาด การแปล หรือการหมุนข้อความเคลื่อนไหว ให้ตั้งค่า textMotion พารามิเตอร์ใน TextStyle เป็น TextMotion.Animated วิธีนี้จะทำให้ราบรื่นขึ้น การเปลี่ยนไปมาระหว่างข้อความเคลื่อนไหวได้ ใช้ Modifier.graphicsLayer{ } เพื่อ แปล หมุน หรือปรับขนาดข้อความ

val infiniteTransition = rememberInfiniteTransition(label = "infinite transition")
val scale by infiniteTransition.animateFloat(
    initialValue = 1f,
    targetValue = 8f,
    animationSpec = infiniteRepeatable(tween(1000), RepeatMode.Reverse),
    label = "scale"
)
Box(modifier = Modifier.fillMaxSize()) {
    Text(
        text = "Hello",
        modifier = Modifier
            .graphicsLayer {
                scaleX = scale
                scaleY = scale
                transformOrigin = TransformOrigin.Center
            }
            .align(Alignment.Center),
        // Text composable does not take TextMotion as a parameter.
        // Provide it via style argument but make sure that we are copying from current theme
        style = LocalTextStyle.current.copy(textMotion = TextMotion.Animated)
    )
}

ทำให้สีข้อความเคลื่อนไหว

วันที่ The Words
รูปที่ 10 ตัวอย่างที่แสดงสีข้อความแบบเคลื่อนไหว

หากต้องการให้สีข้อความเคลื่อนไหว ให้ใช้ lambda ของ color ใน Composable BasicText ดังนี้

val infiniteTransition = rememberInfiniteTransition(label = "infinite transition")
val animatedColor by infiniteTransition.animateColor(
    initialValue = Color(0xFF60DDAD),
    targetValue = Color(0xFF4285F4),
    animationSpec = infiniteRepeatable(tween(1000), RepeatMode.Reverse),
    label = "color"
)

BasicText(
    text = "Hello Compose",
    color = {
        animatedColor
    },
    // ...
)

สลับระหว่างเนื้อหาประเภทต่างๆ

วันที่ กรีนสกรีนพูดว่า
รูปที่ 11 การใช้ AnimatedContent เพื่อให้การเปลี่ยนแปลงของ Composable ต่างๆ เคลื่อนไหว (ช้าลง)

ใช้ AnimatedContent เพื่อสร้างภาพเคลื่อนไหวระหว่าง Composable ต่างๆ หากคุณ แค่ต้องการให้ Composable มาตรฐานจางลง ให้ใช้ Crossfade

var state by remember {
    mutableStateOf(UiState.Loading)
}
AnimatedContent(
    state,
    transitionSpec = {
        fadeIn(
            animationSpec = tween(3000)
        ) togetherWith fadeOut(animationSpec = tween(3000))
    },
    modifier = Modifier.clickable(
        interactionSource = remember { MutableInteractionSource() },
        indication = null
    ) {
        state = when (state) {
            UiState.Loading -> UiState.Loaded
            UiState.Loaded -> UiState.Error
            UiState.Error -> UiState.Loading
        }
    },
    label = "Animated Content"
) { targetState ->
    when (targetState) {
        UiState.Loading -> {
            LoadingScreen()
        }
        UiState.Loaded -> {
            LoadedScreen()
        }
        UiState.Error -> {
            ErrorScreen()
        }
    }
}

สามารถปรับแต่ง AnimatedContent เพื่อแสดงการป้อนและ ออกจากทรานซิชัน สำหรับข้อมูลเพิ่มเติม โปรดอ่านเอกสารประกอบใน AnimatedContent หรืออ่านบล็อกโพสต์นี้ใน AnimatedContent

เคลื่อนไหวขณะนำทางไปยังจุดหมายต่างๆ

วันที่ Composable จำนวน 2 รายการ ชื่อหนึ่งพูดว่า Landing และสีน้ำเงินอีกรายการพูดว่ารายละเอียด ซึ่งทำให้เคลื่อนไหวโดยการเลื่อนรายละเอียดที่ประกอบกันได้บน Landing Page ที่ประกอบกันได้
รูปที่ 12 การสร้างภาพเคลื่อนไหวระหว่าง Composable โดยใช้ Navigation-compose

สร้างภาพเคลื่อนไหวการเปลี่ยนระหว่าง Composable เมื่อใช้ navigation-compose จะระบุ enterTransition และ exitTransition ใน Composable คุณยังตั้งภาพเคลื่อนไหวเริ่มต้นเป็น ใช้สำหรับปลายทางทั้งหมดที่ระดับบนสุด NavHost: วันที่

val navController = rememberNavController()
NavHost(
    navController = navController, startDestination = "landing",
    enterTransition = { EnterTransition.None },
    exitTransition = { ExitTransition.None }
) {
    composable("landing") {
        ScreenLanding(
            // ...
        )
    }
    composable(
        "detail/{photoUrl}",
        arguments = listOf(navArgument("photoUrl") { type = NavType.StringType }),
        enterTransition = {
            fadeIn(
                animationSpec = tween(
                    300, easing = LinearEasing
                )
            ) + slideIntoContainer(
                animationSpec = tween(300, easing = EaseIn),
                towards = AnimatedContentTransitionScope.SlideDirection.Start
            )
        },
        exitTransition = {
            fadeOut(
                animationSpec = tween(
                    300, easing = LinearEasing
                )
            ) + slideOutOfContainer(
                animationSpec = tween(300, easing = EaseOut),
                towards = AnimatedContentTransitionScope.SlideDirection.End
            )
        }
    ) { backStackEntry ->
        ScreenDetails(
            // ...
        )
    }
}

การเปลี่ยนเข้าและออกที่ใช้มีหลายประเภท ผลกระทบต่างๆ กับเนื้อหาขาเข้าและขาออก โปรดดู เอกสารประกอบเพิ่มเติม

เล่นภาพเคลื่อนไหวซ้ำ

วันที่ พื้นหลังสีเขียวที่เปลี่ยนเป็นพื้นหลังสีน้ำเงินโดยไม่มีภาพเคลื่อนไหวระหว่าง 2 สี
รูปที่ 13 สีพื้นหลังที่เคลื่อนไหวระหว่างค่า 2 ค่าโดยไม่มีที่สิ้นสุด

ใช้ rememberInfiniteTransition ด้วย infiniteRepeatable animationSpec เพื่อแสดงภาพเคลื่อนไหวซ้ำไปเรื่อยๆ เปลี่ยน RepeatModes เป็น ระบุว่าจะให้ระบบกลับไปกลับมาอย่างไร

ใช้ finiteRepeatable เพื่อทำซ้ำจำนวนครั้งที่กำหนดไว้

val infiniteTransition = rememberInfiniteTransition(label = "infinite")
val color by infiniteTransition.animateColor(
    initialValue = Color.Green,
    targetValue = Color.Blue,
    animationSpec = infiniteRepeatable(
        animation = tween(1000, easing = LinearEasing),
        repeatMode = RepeatMode.Reverse
    ),
    label = "color"
)
Column(
    modifier = Modifier.drawBehind {
        drawRect(color)
    }
) {
    // your composable here
}

เริ่มภาพเคลื่อนไหวเมื่อเปิดตัว Composable

LaunchedEffect จะทำงานเมื่อ Composable เข้าสู่การเรียบเรียง เริ่ม ภาพเคลื่อนไหวในการเปิดตัว Composable ที่คุณสามารถใช้เพื่อขับเคลื่อนภาพเคลื่อนไหว การเปลี่ยนสถานะ ใช้ Animatable กับเมธอด animateTo เพื่อเริ่มต้น ภาพเคลื่อนไหวเมื่อเปิดตัว

val alphaAnimation = remember {
    Animatable(0f)
}
LaunchedEffect(Unit) {
    alphaAnimation.animateTo(1f)
}
Box(
    modifier = Modifier.graphicsLayer {
        alpha = alphaAnimation.value
    }
)

สร้างภาพเคลื่อนไหวตามลำดับ

วันที่ วงกลม 4 วงที่มีลูกศรสีเขียวแสดงภาพเคลื่อนไหวทีละรูป
รูปที่ 14 แผนภาพแสดงการเคลื่อนไหวของภาพเคลื่อนไหวตามลำดับทีละรายการ

ใช้ coroutine API ของ Animatable เพื่อดำเนินการตามลำดับหรือพร้อมกัน ภาพเคลื่อนไหว กำลังโทรหา animateTo บน Animatable หลังเกิดเหตุการณ์อื่นๆ ภาพเคลื่อนไหวแต่ละภาพเพื่อรอให้ภาพเคลื่อนไหวก่อนหน้าจบก่อน จึงดำเนินการต่อ เพราะเป็นฟังก์ชันระงับ

val alphaAnimation = remember { Animatable(0f) }
val yAnimation = remember { Animatable(0f) }

LaunchedEffect("animationKey") {
    alphaAnimation.animateTo(1f)
    yAnimation.animateTo(100f)
    yAnimation.animateTo(500f, animationSpec = tween(100))
}

สร้างภาพเคลื่อนไหวพร้อมกัน

วันที่ วงกลม 3 วงที่มีลูกศรสีเขียวเคลื่อนไหวไปตามแต่ละวง เป็นภาพเคลื่อนไหวไปพร้อมกัน
รูปที่ 15 แผนภาพแสดงความคืบหน้าของภาพเคลื่อนไหวพร้อมๆ กันไปพร้อมๆ กัน

ใช้ Coroutine API (Animatable#animateTo() หรือ animate) หรือ Transition API เพื่อสร้างภาพเคลื่อนไหวพร้อมกัน หากคุณใช้หลายอุปกรณ์ เปิดใช้งานฟังก์ชันในบริบทโครูทีน เปิดตัวภาพเคลื่อนไหวพร้อมกับ เวลา:

val alphaAnimation = remember { Animatable(0f) }
val yAnimation = remember { Animatable(0f) }

LaunchedEffect("animationKey") {
    launch {
        alphaAnimation.animateTo(1f)
    }
    launch {
        yAnimation.animateTo(100f)
    }
}

คุณสามารถใช้ updateTransition API เพื่อใช้สถานะเดียวกันในการขับรถได้ ภาพเคลื่อนไหวของคุณสมบัติที่แตกต่างกันได้หลายตัวพร้อมกัน ตัวอย่างด้านล่างเป็นภาพเคลื่อนไหว มีพร็อพเพอร์ตี้ 2 รายการที่ถูกควบคุมโดยการเปลี่ยนแปลงสถานะ ได้แก่ rect และ borderWidth

var currentState by remember { mutableStateOf(BoxState.Collapsed) }
val transition = updateTransition(currentState, label = "transition")

val rect by transition.animateRect(label = "rect") { state ->
    when (state) {
        BoxState.Collapsed -> Rect(0f, 0f, 100f, 100f)
        BoxState.Expanded -> Rect(100f, 100f, 300f, 300f)
    }
}
val borderWidth by transition.animateDp(label = "borderWidth") { state ->
    when (state) {
        BoxState.Collapsed -> 1.dp
        BoxState.Expanded -> 0.dp
    }
}

เพิ่มประสิทธิภาพของภาพเคลื่อนไหว

ภาพเคลื่อนไหวในการเขียนอาจก่อให้เกิดปัญหาด้านประสิทธิภาพ เนื่องจากลักษณะ ภาพเคลื่อนไหวเป็นอย่างไร ทั้งการเคลื่อนไหวหรือเปลี่ยนพิกเซลบนหน้าจออย่างรวดเร็ว ทีละเฟรมเพื่อสร้างภาพลวงตาของการเคลื่อนไหว

พิจารณาระยะต่างๆ ในการเขียน ได้แก่ การจัดองค์ประกอบ เลย์เอาต์ และการวาดภาพ ถ้า ภาพเคลื่อนไหวจะเปลี่ยนระยะของเลย์เอาต์ต้องใช้ Composable ที่ได้รับผลกระทบทั้งหมด การส่งต่อและวาดใหม่ หากภาพเคลื่อนไหวของคุณเกิดขึ้นในระยะการวาด ค่าเริ่มต้นจะมีประสิทธิภาพมากกว่ากรณีที่คุณเรียกใช้ภาพเคลื่อนไหวในเลย์เอาต์ เพราะจะทำให้มีงานทำในภาพรวมน้อยลง

เลือก lambda เพื่อให้แอปทำงานน้อยที่สุดขณะแสดงภาพเคลื่อนไหว Modifier หากเป็นไปได้ การดำเนินการนี้จะข้ามการจัดองค์ประกอบใหม่และดำเนินการ ภาพเคลื่อนไหวนอกระยะการเรียบเรียง Modifier.graphicsLayer{ } เนื่องจากตัวแก้ไขนี้จะทำงานเสมอในการเสมอกัน สำหรับข้อมูลเพิ่มเติมเกี่ยวกับเรื่องนี้ โปรดดูส่วนการเลื่อนการอ่านใน เอกสารประกอบเกี่ยวกับประสิทธิภาพ

เปลี่ยนเวลาของภาพเคลื่อนไหว

โดยค่าเริ่มต้น การเขียนจะใช้ภาพเคลื่อนไหวฤดูใบไม้ผลิสำหรับภาพเคลื่อนไหวส่วนใหญ่ Springs หรือ ภาพเคลื่อนไหวที่อิงตามฟิสิกส์ ให้ความรู้สึกเป็นธรรมชาติมากขึ้น และยังรบกวนผู้ใช้ได้ด้วย จะคำนึงถึงความเร็วปัจจุบันของวัตถุ ไม่ใช่เวลาคงที่ หากต้องการลบล้างค่าเริ่มต้น API ภาพเคลื่อนไหวทั้งหมดที่แสดงข้างต้น สามารถตั้งค่า animationSpec เพื่อปรับแต่ง วิธีแสดงภาพเคลื่อนไหวได้ คุณต้องการให้ทำงาน เป็นระยะเวลาหนึ่งหรือให้เด้งดึ๋งขึ้น

ต่อไปนี้เป็นข้อมูลสรุปเกี่ยวกับตัวเลือกต่างๆ ของ animationSpec:

  • spring: ภาพเคลื่อนไหวแบบฟิสิกส์ เป็นค่าเริ่มต้นสำหรับภาพเคลื่อนไหวทั้งหมด คุณ เปลี่ยนความแข็งหรืออัตราส่วนการหน่วงได้เพื่อให้ได้ภาพเคลื่อนไหวแบบอื่น รูปลักษณ์และความรู้สึก
  • tween (ย่อมาจาก between): ภาพเคลื่อนไหวที่อิงตามระยะเวลา, ภาพเคลื่อนไหว ระหว่าง 2 ค่าด้วยฟังก์ชัน Easing
  • keyframes: ข้อกำหนดสำหรับการระบุค่าที่จุดสำคัญบางจุดใน ภาพเคลื่อนไหว
  • repeatable: ข้อกำหนดตามระยะเวลาที่จะทำงานตามจำนวนครั้งที่กำหนด ระบุโดย RepeatMode
  • infiniteRepeatable: ข้อกำหนดตามระยะเวลาที่ทำงานตลอดไป
  • snap: สแนปไปยังค่าสิ้นสุดทันทีโดยไม่ต้องมีภาพเคลื่อนไหว
เขียนข้อความแสดงแทนที่นี่
รูปที่ 16 ไม่มีชุดข้อมูลจำเพาะเทียบกับชุดข้อมูลจำเพาะของฤดูใบไม้ผลิที่กำหนดเอง

ดูข้อมูลเพิ่มเติมเกี่ยวกับ animationSpecs ได้ในเอกสารประกอบฉบับเต็ม

แหล่งข้อมูลเพิ่มเติม

สำหรับตัวอย่างภาพเคลื่อนไหวสนุกๆ ใน Compose โปรดดูข้อมูลต่อไปนี้