Is there a way to have multiple CheckedTextView
in some sort of group like RadioGroup
? So only one CheckedTextView
would be checked at the same time.
If this is not possible as CheckedTextView
is a child of TextView
, what is the most memory efficient way to code logic that only one CheckedTextView
can be checked in the group of 5 other CheckedTextViews
?
It does not look memory efficient that each time one CheckedTextView
is pressed, I check for the check state of all others and change it accordingly.