我想删除行结束列表视图,android 4.2.2 Api 17:
我试过了:
getListView().setDivider(null);
getListView().setDividerHeight(0);
和
android:divider="@null"
android:dividerHeight="0dp"
和
android:divider="#00000000"
android:dividerHeight="0dp"
和
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
但没有工作,
这是我的布局:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/drawer_text" />
</RelativeLayout>
<ListView
android:id="@+id/drawer"
android:layout_width="250dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#F3F3F4"
android:choiceMode="singleChoice"
android:divider="#00000000"
android:dividerHeight="0dp"
/>
</android.support.v4.widget.DrawerLayout>
感谢任何建议。
答案 0 :(得分:0)
您想删除listview的底线吗?尝试使用wrap_content而不是match_parent用于listview的layout_weight