Android examples for User Interface:CheckBox
set CheckBox Value
//package com.java2s; import android.view.View; import android.widget.CheckBox; public class Main { public static void setCheckBoxValue(View parent, int id, boolean checked) { CheckBox cb = (CheckBox) parent.findViewById(id); cb.setChecked(checked);//from ww w .ja v a 2 s . c o m } }