共用元素轉換功能可讓您在具有一致內容的可組合項之間順暢轉換,通常用於瀏覽,可讓您在使用者瀏覽不同畫面時,透過視覺化方式連結不同畫面。
舉例來說,在下方影片中,您可以看到點心圖片和標題從清單頁面分享到詳細資料頁面。
Compose 提供幾個高階 API,可協助您建立共用元素:
SharedTransitionLayout
:實作共用元素轉場效果所需的邊界版面配置。並提供SharedTransitionScope
。可組合函式必須位於SharedTransitionScope
中,才能使用共用元素修飾符。Modifier.sharedElement()
:修飾符會將應與其他可組合項比對的可組合項,標記為SharedTransitionScope
。Modifier.sharedBounds()
:修飾符會向SharedTransitionScope
標示,這個可組合函式的邊界應用於轉場作業的容器邊界。與sharedElement()
不同,sharedBounds()
是專為視覺上不同的內容而設計。
在 Compose 中建立共用元素時,重要的概念是如何與疊加和裁剪作業搭配運作。請參閱剪輯和覆蓋圖層一節,進一步瞭解這個重要主題。
基本用法
本節將建立以下轉場效果,從較小的「list」項目轉換至較大的詳細項目:
使用 Modifier.sharedElement()
的最佳方法就是搭配 AnimatedContent
、AnimatedVisibility
或 NavHost
,系統會自動為您管理可組合項之間的轉換。
起點是現有的基礎 AnimatedContent
,其中包含 MainContent
和 DetailsContent
可組合函式,然後再新增共用元素:
如要讓共用元素在兩個版面配置之間建立動畫,請使用
SharedTransitionLayout
將AnimatedContent
可組合項包住。從SharedTransitionLayout
和AnimatedContent
傳遞的範圍會傳遞至MainContent
和DetailsContent
:var showDetails by remember { mutableStateOf(false) } SharedTransitionLayout { AnimatedContent( showDetails, label = "basic_transition" ) { targetState -> if (!targetState) { MainContent( onShowDetails = { showDetails = true }, animatedVisibilityScope = this@AnimatedContent, sharedTransitionScope = this@SharedTransitionLayout ) } else { DetailsContent( onBack = { showDetails = false }, animatedVisibilityScope = this@AnimatedContent, sharedTransitionScope = this@SharedTransitionLayout ) } } }
將
Modifier.sharedElement()
新增至兩個相符可組合項的可組合項修飾符鏈結。建立SharedContentState
物件,並使用rememberSharedContentState()
記住該物件。SharedContentState
物件會儲存決定共用元素的專屬索引鍵。請提供可識別內容的專屬鍵,並使用rememberSharedContentState()
標記要記住的項目。AnimatedContentScope
會傳遞至輔助鍵,用於協調動畫。@Composable private fun MainContent( onShowDetails: () -> Unit, modifier: Modifier = Modifier, sharedTransitionScope: SharedTransitionScope, animatedVisibilityScope: AnimatedVisibilityScope ) { Row( // ... ) { with(sharedTransitionScope) { Image( painter = painterResource(id = R.drawable.cupcake), contentDescription = "Cupcake", modifier = Modifier .sharedElement( rememberSharedContentState(key = "image"), animatedVisibilityScope = animatedVisibilityScope ) .size(100.dp) .clip(CircleShape), contentScale = ContentScale.Crop ) // ... } } } @Composable private fun DetailsContent( modifier: Modifier = Modifier, onBack: () -> Unit, sharedTransitionScope: SharedTransitionScope, animatedVisibilityScope: AnimatedVisibilityScope ) { Column( // ... ) { with(sharedTransitionScope) { Image( painter = painterResource(id = R.drawable.cupcake), contentDescription = "Cupcake", modifier = Modifier .sharedElement( rememberSharedContentState(key = "image"), animatedVisibilityScope = animatedVisibilityScope ) .size(200.dp) .clip(CircleShape), contentScale = ContentScale.Crop ) // ... } } }
如要取得共用元素是否相符的資訊,請將 rememberSharedContentState()
擷取至變數,並查詢 isMatchFound
。
這會產生以下自動動畫:
您可能會發現,整個容器的背景顏色和大小仍使用預設的 AnimatedContent
設定。
共用邊界與共用元素
Modifier.sharedBounds()
與 Modifier.sharedElement()
相似,不過,修飾符有以下差異:
sharedBounds()
適用於視覺上不同的內容,但在狀態之間應共用相同的區域,而sharedElement()
則預期內容會相同。- 使用
sharedBounds()
時,在兩個狀態之間轉換期間,進入和離開畫面的內容會顯示在畫面上,但使用sharedElement()
時,只有目標內容會在轉換邊界中算繪。Modifier.sharedBounds()
有enter
和exit
參數,可用來指定內容的轉場方式,類似於AnimatedContent
的運作方式。 sharedBounds()
最常見的用途是容器轉換模式,而sharedElement()
的範例用途則是主畫面轉場。- 使用
Text
可組合項時,建議使用sharedBounds()
支援字型變更,例如切換斜體和粗體或顏色變化。
在前述範例中,如果在兩種不同情境下將 Modifier.sharedBounds()
新增至 Row
和 Column
,就能共用這兩者的邊界並執行轉場動畫,讓兩者之間的邊界彼此擴大:
@Composable private fun MainContent( onShowDetails: () -> Unit, modifier: Modifier = Modifier, sharedTransitionScope: SharedTransitionScope, animatedVisibilityScope: AnimatedVisibilityScope ) { with(sharedTransitionScope) { Row( modifier = Modifier .padding(8.dp) .sharedBounds( rememberSharedContentState(key = "bounds"), animatedVisibilityScope = animatedVisibilityScope, enter = fadeIn(), exit = fadeOut(), resizeMode = SharedTransitionScope.ResizeMode.ScaleToBounds() ) // ... ) { // ... } } } @Composable private fun DetailsContent( modifier: Modifier = Modifier, onBack: () -> Unit, sharedTransitionScope: SharedTransitionScope, animatedVisibilityScope: AnimatedVisibilityScope ) { with(sharedTransitionScope) { Column( modifier = Modifier .padding(top = 200.dp, start = 16.dp, end = 16.dp) .sharedBounds( rememberSharedContentState(key = "bounds"), animatedVisibilityScope = animatedVisibilityScope, enter = fadeIn(), exit = fadeOut(), resizeMode = SharedTransitionScope.ResizeMode.ScaleToBounds() ) // ... ) { // ... } } }
瞭解範圍
如要使用 Modifier.sharedElement()
,可組合函式必須位於 SharedTransitionScope
中。SharedTransitionLayout
可組合函式會提供 SharedTransitionScope
。務必將要共用元素的 UI 階層中位於同一個頂層點放在同一層。
一般來說,可組合項也應置於 AnimatedVisibilityScope
內。除非您手動管理可見度,否則這項功能通常會透過使用 AnimatedContent
在可組合函式之間切換,或直接使用 AnimatedVisibility
,或透過 NavHost
可組合函式提供。如要使用多個範圍,請將所需範圍儲存在 CompositionLocal 中,使用 Kotlin 中的 context 接收器,或將範圍做為參數傳遞至函式。
當您有多個需要追蹤的範圍,或多層巢狀結構階層時,請使用 CompositionLocals
。CompositionLocal
可讓您選擇要儲存及使用的確切範圍。另一方面,如果您使用內容接收器,階層中的其他版面配置可能會意外覆寫所提供的範圍。舉例來說,如果您有多個巢狀 AnimatedContent
,則可覆寫範圍。
val LocalNavAnimatedVisibilityScope = compositionLocalOf<AnimatedVisibilityScope?> { null } val LocalSharedTransitionScope = compositionLocalOf<SharedTransitionScope?> { null } @Composable private fun SharedElementScope_CompositionLocal() { // An example of how to use composition locals to pass around the shared transition scope, far down your UI tree. // ... SharedTransitionLayout { CompositionLocalProvider( LocalSharedTransitionScope provides this ) { // This could also be your top-level NavHost as this provides an AnimatedContentScope AnimatedContent(state, label = "Top level AnimatedContent") { targetState -> CompositionLocalProvider(LocalNavAnimatedVisibilityScope provides this) { // Now we can access the scopes in any nested composables as follows: val sharedTransitionScope = LocalSharedTransitionScope.current ?: throw IllegalStateException("No SharedElementScope found") val animatedVisibilityScope = LocalNavAnimatedVisibilityScope.current ?: throw IllegalStateException("No AnimatedVisibility found") } // ... } } } }
或者,如果您的階層並未具備深層巢狀結構,您也可以將範圍向下傳遞做為參數:
@Composable fun MainContent( animatedVisibilityScope: AnimatedVisibilityScope, sharedTransitionScope: SharedTransitionScope ) { } @Composable fun Details( animatedVisibilityScope: AnimatedVisibilityScope, sharedTransitionScope: SharedTransitionScope ) { }
與 AnimatedVisibility
共用的元素
先前的範例說明如何使用共用元素與 AnimatedContent
,但共用元素也適用於 AnimatedVisibility
。
例如,在此 Lazy 格線範例中,每個元素都會納入 AnimatedVisibility
中。點按項目時,內容會呈現從 UI 提取到類似對話方塊的元件的視覺效果。
var selectedSnack by remember { mutableStateOf<Snack?>(null) } SharedTransitionLayout(modifier = Modifier.fillMaxSize()) { LazyColumn( // ... ) { items(listSnacks) { snack -> AnimatedVisibility( visible = snack != selectedSnack, enter = fadeIn() + scaleIn(), exit = fadeOut() + scaleOut(), modifier = Modifier.animateItem() ) { Box( modifier = Modifier .sharedBounds( sharedContentState = rememberSharedContentState(key = "${snack.name}-bounds"), // Using the scope provided by AnimatedVisibility animatedVisibilityScope = this, clipInOverlayDuringTransition = OverlayClip(shapeForSharedElement) ) .background(Color.White, shapeForSharedElement) .clip(shapeForSharedElement) ) { SnackContents( snack = snack, modifier = Modifier.sharedElement( state = rememberSharedContentState(key = snack.name), animatedVisibilityScope = this@AnimatedVisibility ), onClick = { selectedSnack = snack } ) } } } } // Contains matching AnimatedContent with sharedBounds modifiers. SnackEditDetails( snack = selectedSnack, onConfirmClick = { selectedSnack = null } ) }
修飾符排序
使用 Modifier.sharedElement()
和 Modifier.sharedBounds()
時,修飾符鏈結的順序相當重要,就像 Compose 的其餘部分一樣。影響大小的修飾符放置位置不正確,可能會導致在共用元素比對期間發生視覺跳躍的情況。
舉例來說,如果您在兩個共用元素的不同位置放置邊框修飾符,動畫就會出現視覺差異。
var selectFirst by remember { mutableStateOf(true) } val key = remember { Any() } SharedTransitionLayout( Modifier .fillMaxSize() .padding(10.dp) .clickable { selectFirst = !selectFirst } ) { AnimatedContent(targetState = selectFirst, label = "AnimatedContent") { targetState -> if (targetState) { Box( Modifier .padding(12.dp) .sharedBounds( rememberSharedContentState(key = key), animatedVisibilityScope = this@AnimatedContent ) .border(2.dp, Color.Red) ) { Text( "Hello", fontSize = 20.sp ) } } else { Box( Modifier .offset(180.dp, 180.dp) .sharedBounds( rememberSharedContentState( key = key, ), animatedVisibilityScope = this@AnimatedContent ) .border(2.dp, Color.Red) // This padding is placed after sharedBounds, but it doesn't match the // other shared elements modifier order, resulting in visual jumps .padding(12.dp) ) { Text( "Hello", fontSize = 36.sp ) } } } }
相符的邊界 |
不相符的邊界:請注意,共用元素動畫需要調整為不正確的邊界,因此看起來有點不對勁 |
---|---|
在共用元素修飾符「前」使用的修飾符會為共用元素修飾符提供限制,然後用於衍生初始和目標邊界,以及後續的邊界動畫。
在共用元素修飾符「之後」使用的修飾符,會使用之前的限制來評估和計算子項的目標大小。共用元素修飾符可以建立一系列動畫限制,將子項從初始大小逐步轉換為目標大小。
例外狀況是,如果您在可組合項上使用 resizeMode = ScaleToBounds()
或 Modifier.skipToLookaheadSize()
進行動畫。在這種情況下,Compose 會使用目標限制條件來安排子項,並使用比例因數執行動畫,而非變更版面配置大小。
不重複的鍵
使用複雜的共用元素時,建議您建立非字串的鍵,因為字串可能很容易出錯。每個鍵都必須是唯一值,才能進行比對。舉例來說,Jetsnack 有以下共用元素:
您可以建立列舉來代表共用元素類型。在這個範例中,整張點心資訊卡也可以出現在主畫面的多個不同位置,例如「熱門」和「推薦」區段。您可以建立具有 snackId
、origin
(「熱門」/「推薦」) 的鍵,以及要共用的共用元素的 type
:
data class SnackSharedElementKey( val snackId: Long, val origin: String, val type: SnackSharedElementType ) enum class SnackSharedElementType { Bounds, Image, Title, Tagline, Background } @Composable fun SharedElementUniqueKey() { // ... Box( modifier = Modifier .sharedElement( rememberSharedContentState( key = SnackSharedElementKey( snackId = 1, origin = "latest", type = SnackSharedElementType.Image ) ), animatedVisibilityScope = this@AnimatedVisibility ) ) // ... }
建議為鍵搭配使用資料類別,因為這些資料類別會實作 hashCode()
和 isEquals()
。
手動管理共用元素的顯示設定
如果您不使用 AnimatedVisibility
或 AnimatedContent
,可以自行管理共用元素的顯示設定。使用 Modifier.sharedElementWithCallerManagedVisibility()
,並提供您自己的條件,決定項目應顯示或隱藏的時機:
var selectFirst by remember { mutableStateOf(true) } val key = remember { Any() } SharedTransitionLayout( Modifier .fillMaxSize() .padding(10.dp) .clickable { selectFirst = !selectFirst } ) { Box( Modifier .sharedElementWithCallerManagedVisibility( rememberSharedContentState(key = key), !selectFirst ) .background(Color.Red) .size(100.dp) ) { Text(if (!selectFirst) "false" else "true", color = Color.White) } Box( Modifier .offset(180.dp, 180.dp) .sharedElementWithCallerManagedVisibility( rememberSharedContentState( key = key, ), selectFirst ) .alpha(0.5f) .background(Color.Blue) .size(180.dp) ) { Text(if (selectFirst) "false" else "true", color = Color.White) } }
目前限制
這些 API 有一些限制。最值得注意的是:
- 不支援 View 和 Compose 之間的互通性。這包括任何包裝
AndroidView
的可組合函式,例如Dialog
。 - 以下項目不支援自動動畫:
- 共用圖片可組合項:
ContentScale
預設不會顯示動畫。並會對齊設定的結尾ContentScale
。
- 形狀裁剪:不支援在形狀之間自動動畫效果,例如在項目轉換時從正方形到圓形動畫。
- 對於不支援的情況,請使用
Modifier.sharedBounds()
而非sharedElement()
,並在項目上新增Modifier.animateEnterExit()
。
- 共用圖片可組合項: