朋友我想设计一个自定义的列表视图。列表视图中的每一行将包含四列。我设计了一个单独的 row.xml 像这样。
`
<TextView android:id="@+id/index"
android:layout_width="50dip"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/Invested"
android:layout_width="70dip"
android:layout_height="wrap_content" android:layout_weight="1"/>
<TextView android:id="@+id/Revenue"
android:layout_width="60dip"
android:layout_height="wrap_content" android:layout_weight="1"/>
`
现在,列表视图将为每一行设置分隔符。我需要的只是列表中每个项目之间的垂直分隔线。请帮我解决一下这个。提前致谢。