1. 首页
  2. 移动开发
  3. Android
  4. 单选与复选按钮-android资料

单选与复选按钮-android资料

上传者: 2024-07-06 03:08:26上传 PPT文件 412.5KB 热度 8次
单选与复选按钮tandroid.widget.CheckBox复选按钮,继承自android.widget.CompoundButton,在android.widget包中。 t常用方法: tisChecked()检查是否被选中。 t监听按钮状态更改,需要添加setOnCheckedChangeListener(CompoundButton.OnCheckedChangeListener); tandroid.widget. RadioButton单选按钮,继承自android.widget.CompoundButton,在android.widget包中。 t通常用法: t单选按钮要声明在RadioGroup,RadioGroup是流式布局android.widget.LinearLayout的子类。 t单选按钮状态更改的监听,是要给他的RadioGroup添加setOnCheckedChangeListener(RadioGroup.OnCheckedChangeListener)监听器。注意监听器类型和CheckBox是不一样的。
用户评论