I have an onCheckChangedListener to show a textView depending on which radio button is selected. I have 1 question and 1 problem that I was wondering if anyone could help me wi
// If TextView is already showing and you want to hide it.
if (TvFolk1.isShown()) { TvFolk2.setVisibility(View.INVISIBLE); }
// For uncheck all radio button from radio button groups
RadioGroup rgButton = (RadioGroup)findViewById(R.id.radiobuttongroup); rgButton.clearCheck();