hi all,

i have custom ArrayAdapter to make listView each row contain ( image &
text & checkBox )

i made the xml file to make the standard layout for row

and make the default visibility for checkBox false

in getView function that draw the listview

get the checkBox using id and assign specific tag for it to enable me
to get it

on the onListItemClick function

i made this code :

       CheckBox check = (CheckBox)v.findViewWithTag(position);
        check.setVisibility(0);

to get the current checkbox and make it visible

but when i choose specific row i found that some of the other rows
checkbox become visible
and current row checkbox not change ??

what is the problem ???
how can isolve it

thanks....



-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to