在jetpack中画一条线

时间:2019-11-17 07:06:43

标签: android android-jetpack-compose

使用XML布局,您可以使用具有彩色背景的View对象绘制线条。

<View
   android:width="match_parent"
   android:height="1dp"
   android:background="#000000" />

如何在Jetpack撰写中绘制水平或垂直线

2 个答案:

答案 0 :(得分:6)

要绘制一条线,您可以使用内置的 androidx.compose.material.Divider(如果您使用 androidx.compose.material)或使用与材料分隔线相同的方法创建您自己的线:

水平线

Column(
    // forces the column to be as wide as the widest child,
    // use .fillMaxWidth() to fill the parent instead
    // https://developer.android.com/jetpack/compose/layout#intrinsic-measurements
    modifier = Modifier.width(IntrinsicSize.Max)
) {
    Text("one", Modifier.padding(4.dp))

    // use the material divider
    Divider(color = Color.Red, thickness = 1.dp)

    Text("two", Modifier.padding(4.dp))

    // or replace it with a custom one
    Box(
        modifier = Modifier
            .fillMaxWidth()
            .height(1.dp)
            .background(color = Color.Red)
    )

    Text("three", Modifier.padding(4.dp))
}

enter image description here

竖线

Row(
    // forces the row to be as tall as the tallest child,
    // use .fillMaxHeight() to fill the parent instead
    // https://developer.android.com/jetpack/compose/layout#intrinsic-measurements
    modifier = Modifier.height(IntrinsicSize.Min)
) {
    Text("one", Modifier.padding(4.dp))

    // use the material divider
    Divider(
        color = Color.Red,
        modifier = Modifier
            .fillMaxHeight()
            .width(1.dp)
    )

    Text("two", Modifier.padding(4.dp))

    // or replace it with a custom one
    Box(
        modifier = Modifier
            .fillMaxHeight()
            .width(1.dp)
            .background(color = Color.Red)
    )

    Text("three", Modifier.padding(4.dp))
}

enter image description here

答案 1 :(得分:1)

您可以使用

  

可分割的分频器

水平行的方法,如下所示。

Divider(color = Color.Blue, height = 1.dp)

示例:

@Composable
fun drawLine(){
    MaterialTheme {

        VerticalScroller{
            Column(modifier = Spacing(16.dp), mainAxisSize = LayoutSize.Expand) {

                (0..3).forEachIndexed { index, i ->
                    Text(
                        text = "Draw Line !",
                        style = TextStyle(color = Color.DarkGray, fontSize = 22.sp)
                    )

                    Divider(color = Color.Blue, height = 2.dp)

                }
            }
        }

    }

}