自定义Android ListView颜色?

时间:2010-06-04 13:27:50

标签: android listview

我搜索了互联网,发现了很多关于如何使用列表选择器更改列表视图颜色的帖子。但它似乎对我不起作用。所以我的问题是我做错了什么?

当我使用下面的文件时,我得到一个列表,其中所有项目背景最初都是蓝色。 (我期待白色)

当我上下移动焦点时,文本只会变为深灰色,而项目背景仍为蓝色。 (这是我希望单行为蓝色,其余为白色)

当我点击一行时,我点击的行的背景变为黑色,而所有其他行变为绿色。 (我希望我点击的行变为绿色,其余为白色)

这是我的主要布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<ListView
    android:id="@android:id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:listSelector="@drawable/item_selector"
    />
<TextView
    android:id="@android:id/empty"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/empty"
    />
</LinearLayout>

这是我的列表项文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:orientation="horizontal" 
    android:padding="10sp">
    <CheckBox
        android:id="@+id/checkbox"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="false"
        />
    <TextView 
        android:id="@+id/title" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:singleLine="true" 
        android:textStyle="bold"
        android:padding="7dip"
        android:textSize="18sp"
        android:layout_toRightOf="@id/checkbox"
        />
</RelativeLayout>

这是我的颜色文件:

<?xml version="1.0" encoding="utf-8"?>
<resources> 
    <color name="red">#ff00</color>
    <color name="green">#f0f0</color>
    <color name="blue">#f00f</color>
    <color name="white">#ffff</color>
</resources>

这是我的选择器文件:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item 
        android:state_pressed="true" 
        android:drawable="@color/green" />
    <item 
        android:state_focused="true" 
        android:drawable="@color/blue" />
    <item 
        android:drawable="@color/white" />
</selector>

希望我做错了一些愚蠢和简单。

提前致谢。

2 个答案:

答案 0 :(得分:7)

我认为android:listSelector =“@ drawable / item_selector”仅应用于视图的根目录而不是他的子孙。

尝试使用android:background="@drawable/item_selector"将@ drawable / item_selector添加为RelativeLayout的背景,并将透明布局添加到listSelector:

android:listSelector="@android:color/transparent"

答案 1 :(得分:1)

实际上,如果您想在不使用资源的情况下以编程方式执行此操作,则可以设置元素颜色。例如,要在TextView中设置文本颜色#F123456:

objTextView.setTextColor(color.parseColor("#F12345"));

如果您想在用户可选择的列表视图中动态设置颜色,这可能很方便,可能存储在数据库中,您无法将静态资源文件用于颜色列表。