我想改变ListView
分隔线的颜色。任何帮助,将不胜感激。
问问题
257727 次
9 回答
769
您可以使用 .xml 在布局 xml 文件中设置此值android:divider="#FF0000"
。如果要更改颜色/可绘制对象,则还必须设置/重置分隔线的高度。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="#FFCC00"
android:dividerHeight="4px"/>
</LinearLayout>
于 2010-03-03T15:45:32.797 回答
164
或者你可以编码:
int[] colors = {0, 0xFFFF0000, 0}; // red for the example
myList.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
myList.setDividerHeight(1);
希望能帮助到你
于 2010-10-10T13:22:28.887 回答
90
对于单色线,请使用:
list.setDivider(new ColorDrawable(0x99F10529)); //0xAARRGGBB
list.setDividerHeight(1);
重要的是 DividerHeight 设置在 divider 之后,否则你什么也得不到。
于 2012-06-28T23:45:09.267 回答
13
您还可以使用以下方法从资源中获取颜色:
dateView.setDivider(new ColorDrawable(_context.getResources().getColor(R.color.textlight)));
dateView.setDividerHeight(1);
于 2013-02-08T00:10:08.603 回答
10
@Asher Aslan 酷炫效果的 XML 版本。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<gradient
android:angle="180"
android:startColor="#00000000"
android:centerColor="#FFFF0000"
android:endColor="#00000000"/>
</shape>
该形状的名称为:可绘制文件夹下的 list_driver.xml
<ListView
android:id="@+id/category_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="@drawable/list_driver"
android:dividerHeight="5sp" />
于 2014-02-17T16:49:30.200 回答
6
有两种方法可以做到这一点:
您可以在布局 xml 文件中设置android:divider="#FFCCFF"的值。有了这个,你还必须像这样指定分隔线的高度android:dividerHeight="5px "。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <ListView android:id="@+id/lvMyList" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="#FFCCFF" android:dividerHeight="5px"/> </LinearLayout>
您也可以通过编程方式执行此操作...
ListView listView = getListView(); ColorDrawable myColor = new ColorDrawable( this.getResources().getColor(R.color.myColor) ); listView.setDivider(myColor); listView.setDividerHeight();
于 2015-02-02T12:20:38.967 回答
2
在您的 xml 文件中使用以下代码
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="#000000"
android:dividerHeight="1dp">
</ListView>
于 2015-05-15T09:57:27.467 回答
1
以编程方式使用
// Set ListView divider color
lv.setDivider(new ColorDrawable(Color.parseColor("#FF4A4D93")));
// set ListView divider height
lv.setDividerHeight(2);
使用 xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/android:list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:divider="#44CC00"
android:dividerHeight="4px"/>
</LinearLayout>
于 2019-07-02T07:43:06.840 回答
0
用于android:divider="#FF0000"
ListView android:dividerHeight="2px"
。
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#0099FF"
android:dividerHeight="2px"/>
于 2014-02-17T10:19:44.070 回答