欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Button 简单写,优化代码

程序员文章站 2022-07-13 14:34:13
...
gongneng = new Button[7];
gongneng[0] = (Button) findViewById(R.id.a_bt);
gongneng[1] = (Button) findViewById(R.id.b_bt);
gongneng[2] = (Button) findViewById(R.id.c_bt);
gongneng[3] = (Button) findViewById(R.id.d_bt);
gongneng[4] = (Button) findViewById(R.id.e_bt); //兑换按钮当前隐藏了
//新加如 5 公告 6 好友
gongneng[5] = (Button) findViewById(R.id.f_bt);
gongneng[6] = (Button) findViewById(R.id.g_bt);

for (int i = 0; i < 7; i++) {
gongneng[i].setOnClickListener(this);   //用循环把按钮的监听器全部初始化
}


//实现按钮1 
if (v == gongneng[0]) {

}

  

转载于:https://www.cnblogs.com/firecode/archive/2013/05/18/3084977.html