package com.commonsware.android.basic3;
//체크 박스
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
public class CheckBoxDemo extends Activity implements CompoundButton.OnCheckedChangeListener{
CheckBox cb;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
cb =(CheckBox)findViewById(R.id.check);
//이벤트 소스와 이벤트 리스너가 구현된 객체 연결
cb.setOnCheckedChangeListener(this);
}
//이벤트 핸들러
//전달되는 인자
//CompoundButton buttonView : 이벤트가 발생한 CheckBox
//boolean isChecked : 체크박스가 선택되면 true
// 미선택되면 false
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked){
if(isChecked){
cb.setText("체크 상태");
}
else{
cb.setText("체크 하세유");
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<CheckBox
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="체크하세유" />
</LinearLayout>