2

我正在尝试在 Android 应用程序上插入垂直线,但在操作上遇到问题。

我的布局目前设计为已经完成的表格和行布局。谁能建议在布局上插入跨越多个表格行的垂直线的最佳方法?我不能做一个背景颜色,因为最后一个是不同的颜色和虚线。

4

1 回答 1

0

我不确定,但会尝试使用此代码。如

用于水平线

        <View
            android:layout_width="fill_parent"
            android:layout_height="1dip"
            android:layout_marginBottom="3dp"
            android:layout_marginTop="3dp"
            android:background="#000000" />

对于垂直线

        <View
            android:layout_width="1dip"
            android:layout_height="fill_parent"
            android:layout_marginLeft="3dp"
            android:layout_marginRight="3dp"
            android:background="#000000" />

在这里,您可以控制边距,填充可满足您的需求。祝你好运。

于 2014-04-22T13:27:33.213 回答