私は各アイテムの背景画像を持つリストビューを持っています。 私の質問は、リスト内の複数の項目を選択する方法とその背景を変更する方法です。 このコードでは、一度に1つのアイテムしか選択できません。 以下はリストビュー用の私のXMLです。リストビュー内の複数のアイテムの背景を変更するには
main.xml
<ListView android:layout_height="350dp" android:id="@id/ListView01" android:layout_width="fill_parent"></ListView>
itemrow.xml
<?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:background="@layout/list_bg"
android:orientation="vertical">
<TextView android:id="@+id/name"
android:textSize="16sp" android:paddingLeft="25dp"
android:textStyle="bold" android:text="hello"
android:textColor="#FFFFFF" android:gravity="center_vertical"
android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</LinearLayout>
list_bg.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_selected="true"
android:drawable="@android:color/transparent" />
<item
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/cellbgnew" />
<item android:state_pressed="true"
android:drawable="@drawable/cellbghover" />
<item android:state_selected="true"
android:state_pressed="false"
android:drawable="@drawable/cellbghover" />
</selector>
それは私の場合で働いていない、あなたは私にいくつかのコード – Vamshi