我在这里使用自定义列表视图,并且已经禁用了列表视图的分隔符。
我也试过普通的listview(不是自定义的)但它仍然没有用。除了从xml修改它之外还有什么方法吗?
这里是listview xml的代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:showDividers="none"
tools:context=".MainActivity" >
<ListView
android:id="@+id/lvListItem"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:divider="@null"
android:dividerHeight="0px" >
</ListView>
有人可以帮助我摆脱分频器吗? :)谢谢!
答案 0 :(得分:1)
在xml:
中将dividerHeight设置为零并将分隔符设置为nullandroid:dividerHeight="0dp"
android:divider="@null"
请注意0dp
不是0px
。
希望它有效