我正在尝试使用下面的连接线制作自定义列表视图:
父视图
|
| ----儿童视图
|
| ----儿童视图
|
| ----儿童视图
无法将连接线绘制到子视图。
答案 0 :(得分:0)
您可以使用分隔符实现此目的。分隔符可以是包含该行的图像。 此外,如果您正在寻找具有更多子视图的列表视图,则可以使用ExpandableListview。
答案 1 :(得分:0)
将此布局文件用作ListView行
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp"
android:paddingLeft="30dp" >
<View
android:id="@+id/VerticalLine"
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:background="@android:color/black" />
<View
android:id="@+id/HorizontalLine"
android:layout_width="50dp"
android:layout_height="1dp"
android:layout_centerVertical="true"
android:background="@android:color/black" />
<TextView android:text="Your Text Here"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/HorizontalLine"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
then set ListView divider drawable to transparent color and listView divider heightto 0dp.