ListView背景属性会在选择一个项目时突出显示所有项目

时间:2013-10-24 16:35:43

标签: android listview android-listview

Screenshot while pressing

在我的Android应用中,当用户按下我的列表中的某个项目时,该项目会正确显示为蓝色,但列表中的所有其他项目也会突出显示为灰色。当用户抬起手指时,高光消失。这会对整个列表产生“闪烁”效果,这是不可取的。

如果我只从ListView中删除背景属性,则闪烁效果会消失。我正在寻找另一个修复,所以我可以保留背景属性。

我使用的是Android 17。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="8dip"
    android:paddingTop="0dip"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:textColor="@color/my_sky"
        android:background="@drawable/my_btn_white"
        android:id="@+id/my_list"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"/>

    <Button
        style="@style/MY.Flow.Button"
        android:id="@+id/my_add_choices"
        android:text="@string/my_favorites_add_choices"
        android:layout_marginTop="10dip"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

我发现了问题。我的@ drawable / my_btn_white有以下一行:

<item android:state_pressed="true" android:drawable="@drawable/my_btn_white_active"/>

当我删除此行时,灰色突出显示,因此闪烁消失。

答案 1 :(得分:0)

尝试添加到ListView

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