View-》TextView-》Button-》CompoundButton->CheckBox、RadioButton、Switch CompoundButton在xml中主要使用2个属性, checked:指定按钮的勾选状态,true表示勾选,false表示未勾选,默认为未勾选; button:指定左侧勾选图标的图形资源,如果不指定就使用系统的默认图标。 CompoundButton在java中主要使用以下方法, setChecked: 设置按钮的勾选状态; setButtonDrawable: 设置左侧…