首页 > 代码库 > 基本控件的使用(2)

基本控件的使用(2)

       嵌入到RadioGroup中实现单选效果

         android: checkedButton=”radio的id值 ”;

       int getCheckedRadioButtonId( );           //获得被选中的单选按钮的id

CheckBox(复选框)

         android: checked=”true”;               //设置默认选中

         CheckBox(Context context)             //实例化CheckBox组件

       void setChecked(boolean checked)      //设置默认选中

ImageView(图片)

       android: maxHeight=” ”;                //定义图片的最大高度

       android: maxWidth=” ”;                 //定义图片的最大宽度

       android: src=http://www.mamicode.com/” ”; //定义显示图片的ID

ImageButton(图片按钮)

基本控件的使用(2)