Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Getting an issue while checking the dynamically generated checkbox through list view

I am developing an android app.. I have 2 radio buttons and 5 check boxes in my listview. If I have selected the radio button in the first list item, radio button on the third and fifth is also get selected.. Same as in the case of Check boxes..Any solution..I have tried to set tag. But no use.

share|improve this question
1  
where we can find your code? – M Mohsin Naeem Oct 29 '12 at 5:54
2  
post some code to get better help..:) – Kalpesh Lakhani Oct 29 '12 at 5:55

marked as duplicate by mootinator, IceMAN, Bill the Lizard Jan 29 at 13:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

Add this two methods into your custom adapter, may be it will solve your problem.

@Override
public int getViewTypeCount() {
    // TODO Auto-generated method stub
    return mName.size();
}

@Override
public int getItemViewType(int position) {
    // TODO Auto-generated method stub
    return position;
}
share|improve this answer
Thank you :)..Worked – user1767260 Oct 29 '12 at 6:04
1  
This is the wrong way as I said you last time also. Please don't give hacks to user's if there is already a good conceptual solution available. stackoverflow.com/a/7739006/726863 – Lalit Poptani Oct 29 '12 at 6:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.