获取ImageButton名称

时间:2013-09-07 16:05:42

标签: android arraylist get imagebutton

我的代码遇到了一些麻烦,我想弄清楚每个ImageButton在我的ArrayList中的位置,看看问题是否存在。如何从ArrayList中检索ImageButton的名称?

List<ImageButton> images = new ArrayList<ImageButton>();
images.add(imgbut1);
images.add(imgbut2);
images.add(imgbut3);
images.add(imgbut4);
images.add(imgbut5);

在这里,我希望获得imgbut1的{​​{1}},images.get(0)的{​​{1}}等等。imgbut2images.get(1)等等

谢谢!

1 个答案:

答案 0 :(得分:0)

imgbut1,imgbut2是您为实例提供的名称。你无法得到这个名字。

以下是一些很好的例子 Get name java instances