我已经为我的ListView
添加了自定义样式,但现在发生了一些奇怪的事情。
1)单击列表中的某个项目时,选择器(alt颜色)不会 出现。代替。标准的绿色选择器出现了,但它是在后面 列表中每行的圆角边缘。就像默认情况一样 带有标准黑色行的ListView在我的样式
enter code here
后面流血 一。有想法该怎么解决这个吗?有没有人遇到过 使用自定义ListView时会出现类似问题吗?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>
答案 0 :(得分:0)
尝试设置列表选择器“null”或删除列表选择器。
而不是在适配器的自定义列表行视图中设置列表选择器集选择器。