I have used setEnabled(false) to set it unable, but it doesn\'t work and after this method, the value of RadioGroup.isEnabled() is false. The value was
setEnabled(false)
RadioGroup.isEnabled()
You can't use the following code;
for(View lol : your_spinner.getTouchables() ) { lol.setEnabled(false); }
Once the views has disabled, there is no touchable child/descentant views anymore.