我想知道如何在android中删除显示列表视图中的下划线,有人可以帮帮我吗?
这是我的listview xml代码
<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_mini"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shadowColor="#ffffff"
android:gravity="center_vertical"
android:paddingLeft="6dip"
android:paddingRight="6dip"
android:textColor="#000000"
android:textSize="9px"
android:background="#fff"
/>
答案 0 :(得分:7)
尝试添加此分隔符标记:
<ListView
android:everythingelse = "yourStuff"
android:divider="#00000000" <--- this guy
/>
到包含ListView元素的XML文件
答案 1 :(得分:0)
简单和解决方案
android:divider="@null"
android:dividerHeight="0dp"