Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 쓰레드
- Linux
- 브로드케스트 리시버
- error
- HTML
- 토익
- 이클립스
- 바닐라루시
- 네트워크보안
- Intent
- 자바
- xml
- 배다해
- Java
- opengl
- opencv
- TOEIC
- 안드로이드
- Eclipse
- 인텐트
- 네트워크
- 레인보우
- rainbow
- 걸스데이
- 뮤직비디오
- 엑티비티
- Android
- Looper
- 영어
- 서비스
Archives
- Today
- Total
W.A 저장소
Android CheckBox 본문
package com.karyu.androidstudy;
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
public class AndroidStudyActivity extends Activity {
CheckBox cb;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
cb = (CheckBox)findViewById(R.id.check);
cb.setOnCheckedChangeListener(new CheckBoxListener());
}
private class CheckBoxListener implements OnCheckedChangeListener {
@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
// TODO Auto-generated method stub
if(arg1) {
arg0.setText("체크 상태");
}else {
arg0.setText("체크되지 않은 상태");
}
}
}
}
'Programing' 카테고리의 다른 글
Android Database(Sqlite) Instruction (2) | 2010.07.29 |
---|---|
Android Spinner (0) | 2010.07.20 |
Programming Reference (0) | 2010.07.16 |
Screen Capture Class(화면 캡쳐 클래스) Robot (0) | 2010.07.16 |
AccelerorMeter Sensor 사용 소스 (0) | 2010.07.15 |