2014년 3월 28일 금요일

버튼 - 안드로이드 개발

버튼은...별거 없다.
버튼 리소스 생성 (참고로 이미지도 따로 올릴수 있다. )

<Button>
     android:id = "@+id/btn"
     android:layout_width = "wrap_content"
     android:layout_height = "wrapcontent"
     android:text = "sss"
/n>

버튼 클릭 이벤트 연결하는 소스

Button btn = (Button)findViewById(R.id.btn)
btn.setOnclickListner(new Button.OnclickListner() {
public void onClick(View v) {
// 버튼 눌렸을때 처리 ...어쩌구 저쩌구
}
});

댓글 없음:

댓글 쓰기