如何在android xml中的相对布局之间绘制线条

时间:2013-12-27 06:43:28

标签: android android-layout relativelayout

我有三个相对布局来显示帐单邮寄地址,送货地址和摘要。我想画一条线来分隔这些布局。怎么可能?

8 个答案:

答案 0 :(得分:1)

在布局之间使用此代码绘制线条

<View
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:background="@android:color/darker_gray"/>

答案 1 :(得分:1)

只需添加如下视图:

<View
    android:id="@+id/vi_sep"
    android:layout_width="fill_parent"
    android:layout_height="1dp"
    android:background="color or image" />

答案 2 :(得分:0)

您可以使用高度为1dp的View并将其背景色设置为灰色以分隔您的三种布局。 (尽管如此,我并不认为需要相对布局。)

答案 3 :(得分:0)

您可以在

之间插入一些背景和高度为2dp,宽度为match_parent的视图

答案 4 :(得分:0)

使用

                   <View
                    android:layout_width="fill_parent"
                    android:layout_height="2dip"
                    android:background="#000000" />   

答案 5 :(得分:0)

使用以下查看,其高度为1dp

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/black"/>

答案 6 :(得分:0)

您可以使用背景ImageView身高1dp的color or image 而且你也可以使用这个图像!

enter image description here

答案 7 :(得分:0)

使用此代码:

<View
    android:layout_width="fill_parent"
    android:layout_height="2dp"
    android:background="#ff00ff"/>