1. 程式人生 > >基本控件的使用(2)

基本控件的使用(2)

context etc radio height boolean get max 單選按鈕 按鈕

RadioButton(單選按鈕)

嵌入到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=” ”; //定義顯示圖片的ID

ImageButton(圖片按鈕)

基本控件的使用(2)