许多电视应用都包含内容详情页面,其中包含给定内容(例如特定电影)的相关元数据。详情页面可以实现为可组合函数,以选定内容的元数据作为其参数。
以下代码是详情屏幕的典型实现。它加载给定电影的图像,并显示其标题和描述。用户可以进行屏幕转换到播放器屏幕,这可以通过点击按钮开始电影播放来触发。您可以通过设置回调函数来处理此操作以进行屏幕转换。
@Composable
fun DetailsScreen(
movie: Movie,
modifier: Modifier = Modifier,
onStartPlayback: (Movie) -> Unit = {}
) {
Box(modifier = modifier.fillMaxSize()){
AsyncImage(
modifier = Modifier.fillMaxSize()
model = movie.image,
contentDescription = null,
contentScale = ContentScale.Crop,
)
Column(modifier = Modifier.padding(32.dp)){
Text(
text = movie.title,
style = MaterialTheme.typeography.heading2
)
Text(text = movie.description)
Button(onClick = { onStartPlayBack(movie) }){
Text(text = R.string.startPlayback)
}
}
}
}