共用元素的常見用途

為共用元素建立動畫效果時,某些特定用途會提供特定建議。

非同步圖片

通常會使用程式庫以非同步方式載入圖片,例如使用 Coil 的 AsyncImage 可組合項時。為了讓兩個可組合項之間能完美運作,建議將 placeholderMemoryCacheKey()memoryCacheKey() 設為與共用元素鍵衍生的字串相同的鍵,這樣一來,比對的共用元素的快取鍵就會相同。新的共用元素在載入新圖片前,都會使用比對的快取做為預留位置。

AsyncImage 的一般用法如下:

AsyncImage(
    model = ImageRequest.Builder(LocalContext.current)
        .data("your-image-url")
        .crossfade(true)
        .placeholderMemoryCacheKey("image-key") //  same key as shared element key
        .memoryCacheKey("image-key") // same key as shared element key
        .build(),
    placeholder = null,
    contentDescription = null,
    modifier = Modifier
        .size(120.dp)
        .sharedBounds(
            rememberSharedContentState(
                key = "image-key"
            ),
            animatedVisibilityScope = this
        )
)

文字

如要為 fontSize 變更設定動畫,請使用 Modifier.sharedBounds()resizeMode = ScaleToBounds()。這項轉場效果可讓大小變更相對流暢。您可以調整 contentScale 參數,為特定字型粗細或樣式製作動畫。

Text(
    text = "This is an example of how to share text",
    modifier = Modifier
        .wrapContentWidth()
        .sharedBounds(
            rememberSharedContentState(
                key = "shared Text"
            ),
            animatedVisibilityScope = this,
            enter = fadeIn(),
            exit = fadeOut(),
            resizeMode = SharedTransitionScope.ResizeMode.ScaleToBounds()
        )
)

根據預設,TextAlign 變更不會以動畫呈現。建議您改用 Modifier.wrapContentSize() / Modifier.wrapContentWidth(),而不要使用不同的 TextAlign 進行共用轉換。