• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

multi select in cutom listview

nokachouik

Lurker
Nov 16, 2010
7
0
Hi everybody,

I have a problem with my listview.
My listview is a custom listview with one imageview and two textview.
And i would like to know how to select some of items in my list using checkbox. I've tried to enable the CHOICE_MODE_MULTIPLE but without success.

this is my layout
Code:
<?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="?android:attr/listPreferredItemHeight"
    android:padding="6dip">
    <ImageView
        android:id="@+id/icon"
        android:layout_width="60sp"
        android:layout_height="60sp"
        android:layout_marginRight="6dip"
        android:src="@drawable/contact_icon2" 
        />
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="0dip"
        android:layout_weight="1"
        android:layout_height="fill_parent">
        <CheckedTextView
            android:id="@+id/toptext"
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1"
            android:gravity="center_vertical"
            android:textSize="20sp"
        />
        <TextView
            android:layout_width="fill_parent"
            android:layout_height="0dip"
            android:layout_weight="1"
            android:id="@+id/bottomtext"
            android:singleLine="true"
            android:ellipsize="marquee"
        />        
    </LinearLayout>
</LinearLayout>


Someone can help me

thanks in advance.
 

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones