I want to hide radio button indicator, which shows that radio button is checked or unchecked. I just want to show its text only. And change text color of radio button which is selected in radio group and other radio buttons text will same.
Here is my onCheckedChanged code.
@Override
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
if(isChecked){
itemView.removeAllViews();
for (Subjects subjects : item.subjects) {
View iv = inflater.inflate(R.layout.expandablelistview_item, itemView, false);
TextView itemName = (TextView) iv.findViewById(R.id.lblListItem);
itemName.setText(subjects.name + " " + subjects.marks);
itemView.addView(iv);
}
}
}