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으로 시작하는 버튼 밖에 만들지 못해서요.