我有六个计数器需要在程序的某个点重置。我想这可能是一个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?
}
答案 0 :(得分:0)
score = R.id.score;
count1 = R.id.count1;
//etc.
如果你的整数有这些数量的资源,是的,它会起作用。