android - setChoiceMode() in GridView on Froyo -
i building app runs on froyo , targets ice cream.
the problem choicemode of gridview. seems froyo doesn't implement setchoicemode (implemented in abslistview) method , don't know how fix problem. can me?
thanks tobia loschiavo
i using code , working:
(int = 0; < parent.getchildcount(); i++) { element = (checkableframelayout) parent.getchildat(i); if (position == i) { element.setchecked(true); } else { element.setchecked(false); } } where parent adapterview
thanks
Comments
Post a Comment