I want to custom the check mark in my several checkedtextview. I wanted to use a "simple" solution, so i did that :
if(serviceChecked.isChecked()){
serviceChecked.setChecked(false);
serviceChecked.setCheckMarkDrawable(null);
} else {
serviceChecked.setChecked(true);
serviceChecked.setCheckMarkDrawable(R.drawable.ic_action_done);
}
I've two problems with this solution :
The first is, it's running only the first time, when I check one of my checktextview, uncheck, and check again, my drawable is not visible.
The second problem is, we can see again the "default" checkmarck (the blue)....
How can I resolve it ?
Thx,