분류 | 게시판 |
베스트 |
|
유머 |
|
이야기 |
|
이슈 |
|
생활 |
|
취미 |
|
학술 |
|
방송연예 |
|
방송프로그램 |
|
디지털 |
|
스포츠 |
|
야구팀 |
|
게임1 |
|
게임2 |
|
기타 |
|
운영 |
|
임시게시판 |
|
옵션 |
|
void init_buttons() {
int n = 0;
do {
if (n >= this.Button_control_ids.length) break;
this.Button_control[n] = (Button)this.findViewById(this.Button_control_ids[n]);
this.Button_control[n].setOnClickListener(this.button_click);
++n;
} while (true);
int n2 = 0;
while (n2 < this.Button_setting_ids.length) {
this.Button_setting[n2] = (Button)this.findViewById(this.Button_setting_ids[n2]);
this.Button_setting[n2].setOnClickListener(this.button_click);
++n2;
}
return;
}
이제 막 배우는 터라 소스에 대해서 잘 알지 못하는거든요.
버튼 관련 소스이긴 한데 버튼 사이즈는 LinearLayout으로 시작하는 버튼 밖에 만들지 못해서요.
죄송합니다. 댓글 작성은 회원만 가능합니다.