Android开发:仿微信底部切换(Compose 版本)提供源码下载
发布时间
阅读量:
阅读量
传统方式,先展示(呈上)效果示意图

事实上,在Android开发过程中,这类页面的出现频率非常高。因此,对Compose版本进行了学习与研究。
简要说明关键点如下:
- 必须保存每次页面切换时所对应的位置信息
var currentNavigationIndex by remember {
mutableStateOf(0)
}
- 应用相应的导航组件BottomNavigation
上述关键内容为本文的重点记录,接下来将展示完整的代码示例
首页相关代码
package com.example.composelearning
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.fo
全部评论 (0)
还没有任何评论哟~
