我有两点如下:
| - - - - 父布局 - - - - |
| - - - - A点 - - - - - - - - |
| - - - - - - - - - - - - - - - - - |
| - - - - - - - - - - - - - - - - - |
| - | - - - - - - - - - - - | - - - - - |
| - | - 儿童布局 - | - - - - - |
| - | - B点 - - - - - | - - - - - |
| - | - - - - - - - - - - | - - - - - |
| - - - - - - - - - - - - - - - - - |
我如何从A点到B点画线?
感谢所有支持!
答案 0 :(得分:0)
简单地说 H 1.只需设计一个宽度为fillparent和高度为2dp的布局,就像背景颜色一样,然后合并到你的主布局中
2.一个简单的
<View android:width="fillparent"
android:height="2dp"
android:background="#000000/>
通过这种方式,您可以添加视线
答案 1 :(得分:0)
将此代码用于vertical
行。
如果你从a到b画线,只需给出dp大小的高度
<View
android:id="@+id/bottom_line1"
android:background="#000000"
android:layout_width="1dp"
android:layout_height="fill_parent"
android:layout_center="true" />
horizontal
行使用此代码:
<View
android:id="@+id/bottom_line1"
android:background="#000000"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_center="true" />