Java tutorial
//package com.java2s; import android.widget.RadioButton; public class Main { public static void switchRadio(Boolean value, RadioButton trueRadio, RadioButton falseRadio) { if (value == null) return; if (value) trueRadio.setChecked(true); else falseRadio.setChecked(true); } }