Android Basics with Compose course  |  Android Developers

<aside> 💡 Jetpack Compose is a modern toolkit for building Android UIs 1 Composable functions 可组合函数 @Composable function declaration 函数声明 2 Annotations 注解 @AnnotationName Annotation with parameters 带参数注解 @Annotation(name = "???",showSystemUi = true)

</aside>

@Composable (informs the compose compiler that this function is intended to convert data into UI)

设计

Material Components (MDC)

资源

类设计和安卓基本构建逻辑 - Jetpack Compose

Modlues → Activities(修改依赖,维护 工程配置清单文件AndroidManifest.xml

注释习惯

Jetpack 工作习惯

Acitivity Lifecycle

Design your app

Test Unit

例子:静态 layout

@Composable
@Preview
fun DiceRollerApp() {
//    As App itself
//    页面包含图片和按钮
    DiceWithButtonAndImage(
        modifier = Modifier
            .fillMaxSize()
            .wrapContentHeight(Alignment.CenterVertically)
    )
}

@Composable
fun DiceWithButtonAndImage(modifier:Modifier = Modifier) {
    Column (
        modifier = modifier,
        horizontalAlignment = Alignment.CenterHorizontally
    ){
        Image(
            painter = painterResource(id = R.drawable.dice_1) ,
            contentDescription = "1"
        )
        Spacer(modifier = Modifier.height(16.dp))
        Button(onClick = { /*TODO*/ }) {
            Text(text = stringResource(id = R.string.roll))
        }
    }
}