作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我在 android 中有一个按钮数组,并且想通过 for 循环获取这些按钮 (findviewbyid),我该怎么做?假设我在我的 xml 中定义了 button1、button2 和 button3。如何将 arr[0]、arr[1] 和 arr[2] 分配给它们?
for(int a = 0; a < arr.length; a++){
arr[a] = (Button) findViewById(R.id.button[a + 1]); //Doesn't work
}
提前致谢!
最佳答案
尝试实现这个:
for(int a=0; a<arr.length; a++) {
String buttonID = "btn" + a;
int resID = getResources().getIdentifier(buttonID, "id", "com.package.your_app");
// To fetch Package name, you can directly call getPackageName() instead of static string "com.package.your_app
buttons[a] = ((Button) findViewById(resID));
buttons[a].setOnClickListener(this);
}
关于android - 带有对象名称的 For 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7953809/
我是一名优秀的程序员,十分优秀!