如何更改Android ListView分隔线的颜色?


Answers:


765

您可以使用来在布局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>

11
您还应该能够在其中指定Drawable资源android:divider。现有的分隔线是渐变。
CommonsWare 2010年

62
如果您使用XML格式,请确保使用android:dividerHeight也能看到高度,否则您将
一无所获

8
根据我的经验,请阅读“应重置分隔线的高度”以“必须设置分隔线的高度”
dpjanes 2011年

44
我不建议px在Android中使用单位定义尺寸,dp而是使用
Marek Sebera 2012年

12
在这种特定情况下,似乎有充分的理由使用px。请参阅:stackoverflow.com/a/12061612/10505
greg7gkb

163

或者您可以编写代码:

int[] colors = {0, 0xFFFF0000, 0}; // red for the example
myList.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
myList.setDividerHeight(1);

希望能帮助到你


太好了,我的物品是在带红色渐变的背景上,您的效果使它们变得壮观!
Darkendorf

1
如果扩展ListActivity,请将mylist替换为getListView()
Aziz

87

对于单个色线,请使用:

list.setDivider(new ColorDrawable(0x99F10529));   //0xAARRGGBB
list.setDividerHeight(1);

在分隔符之后设置DividerHeight非常重要,否则您将一无所获


1
谢谢,我在setDivider()之前调用了setDividerHeight(),没有显示分隔线。
AndreasKlöber'12

3
关于操作顺序的非常有用的注释。我只花了2个小时试图使其正常工作。精美的设计,Android。
尼克·弗罗洛夫

12

您还可以使用以下方法从资源中获取颜色:

dateView.setDivider(new ColorDrawable(_context.getResources().getColor(R.color.textlight)));
dateView.setDividerHeight(1);

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>

该形状的名称为:drawable文件夹下的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" />

6

有两种方法可以做到这一点:

  1. 您可以在布局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>
  2. 您也可以通过编程方式执行此操作...

    ListView listView = getListView();
    ColorDrawable myColor = new ColorDrawable(
        this.getResources().getColor(R.color.myColor)
    );
    listView.setDivider(myColor);
    listView.setDividerHeight();

2

在xml文件中使用以下代码

<ListView 
    android:id="@+id/listView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:divider="#000000" 
    android:dividerHeight="1dp">
</ListView> 

2
最好先解释一下您的解决方案为何有效。仅代码答案可能会解决问题,但不一定能回答提问者的问题。
SuperBiasedMan 2015年

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>

0

使用android:divider="#FF0000"android:dividerHeight="2px"用于ListView。

<ListView 
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#0099FF"
android:dividerHeight="2px"/>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.