How to remove the current drawable and go to old drawable state;
RadioButton radioButton = (RadioButton) findViewById(R.id.opt1);
radioButton.setButtonDrawable(R.drawable.ic_done);
For the next question, it should go to the old drawable.
So I have tried radioButton.setButtonDrawable(0)
but it removed the drawable.
Is there any way to getDefaultDrawable()
according to Theme.AppCompat
?