0

我已经为我的 . 添加了一个自定义样式ListView,但现在发生了一些奇怪的事情。

1)当我单击列表中的项目时,选择器(替代颜色)不会出现。反而。标准的绿色选择器出现了,但它位于列表中每一行的圆形边缘的后面。就好像带有标准黑色行的默认 ListView 正在我的样式后面流血enter code here 。有想法该怎么解决这个吗?有没有人在使用自定义 ListViews 时遇到过类似的问题?

2)当我浏览列表时,背景颜色变回标准黑色,不再是我设计的蓝色。

所以基本上这两个是我现在面临的问题,选择器没有出现,当我浏览列表时,黑色背景“流血”在我的灰色行后面。任何有关此问题的帮助/指导将不胜感激,谢谢!我附上了一张照片

这是我的 listview_row.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip" 
android:background="@drawable/listview_background"


>


<ImageView
    android:id="@+id/imgViewLogo"
    android:layout_width="50dip"
    android:layout_height="50dip"
    android:layout_alignParentLeft="true"
    android:scaleType="fitXY"
    android:src="@drawable/imgview_drawable" >

</ImageView>

<TextView
    android:id="@+id/txtViewTitle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="2dip"
    android:layout_toRightOf="@+id/imgViewLogo"
    android:text="TextView"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textColor="#43c6db"
    android:textStyle="bold" >
</TextView>

<TextView
    android:id="@+id/txtViewDescription"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/txtViewTitle"
    android:layout_marginLeft="2dip"
    android:layout_toRightOf="@+id/imgViewLogo"
    android:textStyle="bold"
    android:textColor="#000000"
    android:text="TextView" >
 </TextView>










</RelativeLayout>

这是我的主要 ListView 布局

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:background="#708090"
>



<ListView
    android:id="@+id/lvAlbumList"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:choiceMode="multipleChoice"
    android:clickable="false"
    android:divider="@drawable/list_divider"
    android:dividerHeight="2dp"
    android:padding="2dp"
    android:listSelector="@drawable/selector"

    android:cacheColorHint="#00000000"

     >




</ListView>

</LinearLayout>

最后是我的 selector.xml,它是一个可绘制的状态列表

 <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

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

<item android:state_focused="true"
      android:drawable="@drawable/list_item_selected" />

<item android:drawable="@drawable/list_item_normal" />

</selector>

[1]: https://p.twimg.com/AiLoEMVCAAIz_6E.png ""

4

1 回答 1

0

只需尝试将列表选择器设置为“null”或删除列表选择器。

而不是在适配器中的自定义列表行视图上设置列表选择器设置选择器。

于 2012-01-03T05:36:06.243 回答