java怎样循环写数组按钮_java – 将按钮变量声明为带有for循环android的数组

我设法在for循环中创建按钮,并且没有理由不在其中声明我的变量.不幸的是,

eclipse只识别“bt”并且不想用它在循环中表示的数字替换我的[i],因此在我的布局中找到正确的id.有关如何使这项工作的任何想法?我也很高兴任何其他解决方案像我一样美丽,这是行不通的;)

Button [] bt = new Button[6];

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.start_layout);

bt[0] = (Button) findViewById(R.id.bt0);

bt[1] = (Button) findViewById(R.id.bt1);//This is what i'm trying to replace

bt[2] = (Button) findViewById(R.id.bt2);

bt[3] = (Button) findViewById(R.id.bt3);

bt[4] = (Button) findViewById(R.id.bt4);

bt[5] = (Button) findViewById(R.id.bt5);

for (int i=0; i<6; i++) {

final int b = i;

bt [i] = (Button)findViewById(R.id.bt[i]);

bt [i].setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

Intent myIntent = new Intent(Start.this, MainActivity.class);

myIntent.putExtra("players", b);

startActivity(myIntent);

//startActivity(new Intent(Start.this, MainActivity.class));

}

});

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值