첫 번째 단계는 Android 프로젝트를 만드는 것입니다.
두 번째 단계는 생성된 res/layout/main.xml을 수정하는 것입니다
일반 복사본을 클립보드 인쇄로 보시겠습니까?
안드로이드 :orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > android:id="@+id/checkBox" android:layout_width="wrap_content" android:layout_height="wrap_content" android: text="CheckBox1" /> android:id="@+id/checkBox1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Checkbox 2" /> android:id ="@+id /radioGroup" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <라디오버튼 android:text=" 베이징" /> > android:text="Tianjin" /> android:id="@+id/radion3" android:layout_width="wrap_content" android:layout_height="wrap _content " android:text="Shanghai" /> android:layout_width="wrap _content" android:layout_height="wrap_content" android:text="Chongqing" />
세 번째 단계는 메인 코드를 추가하는 것입니다
클립보드 인쇄로 보기?
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox; CombineButton;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.CompoundButton.OnCheckedChangeListener; > /** 활동이 처음 생성될 때 호출됩니다. */
RadioButton r1 = null;
RadioButton r2 = null;
RadioButton r3 = null;
RadioButton r4 = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
CheckBox checkBox = (CheckBox) findViewById(R.id.checkBox);
CheckBox checkBox1 = (CheckBox) findViewById(R.id.checkBox1);
//获得单选按钮组
RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radioGroup);
//获得单选按钮
r1 = (RadioButton )findViewById(R.id.radion1);
r2 = (RadioButton )findViewById(R.id.radion2);
r3 = (RadioButton )findViewById(R.id.radion3);
r4 = (RadioButton )findViewById(R.id.radion4);
checkBox.setChecked(true);
r1.setClickable(true);
//监听多选按钮
checkBox.setOnCheckedChangeListener(this);
checkBox1.setOnCheckedChangeListener(this);
//监听单选按钮
radioGroup.setOnCheckedChangeListener(mChangeRadio);
}