如何重置java / android中的几个计数器?

时间:2016-11-19 20:36:40

标签: java android arrays android-view

我有六个计数器需要在程序的某个点重置。我想这可能是一个for循环?提前致谢

int counters[] = {score,count1,count2,count3,count4,count5};
for(int i=0; i<counters.length; i++) {
    findViewById(counters[i]); //...and it resets them all?
}

1 个答案:

答案 0 :(得分:0)

score = R.id.score;
count1 = R.id.count1;
//etc.

如果你的整数有这些数量的资源,是的,它会起作用。