【发布时间】:2022-07-19 17:53:10
【问题描述】:
使用下面的
var state by rememberSaveable {
mutableStateOf(
enumValues<NavigationItem>().associate { it.route to true }
)
}
enum class NavigationItem(val route: String, val icon: Int) {
Home("home", R.drawable.ic_home),
Music("music", R.drawable.ic_music),
Movies("movies", R.drawable.ic_movie),
Books("books", R.drawable.ic_book),
Profile("profile", R.drawable.ic_profile)
}
rememberSaveable 没有保存和恢复状态。
如何保存和恢复?
【问题讨论】:
标签: android android-jetpack-compose