如何搜索imagebuttons的id?
How to search the id of imagebuttons?
我创建了很多图像按钮,我想在同一个 activity 中搜索它们。
我不知道如何搜索图像按钮 ID。
或者还有其他方法吗?
你应该使用findViewById
方法:
ImageButton button1 = (ImageButton) findViewById(R.id.button1);
您应该在 xml 文件中设置 ID:
android:id="@+id/button1"
或者,如果您以编程方式创建 ImageButton
s,您可以这样做:
button1 = new ImageButton(activity);
button1.setId("button1");
稍后使用 findViewById
。
我创建了很多图像按钮,我想在同一个 activity 中搜索它们。
我不知道如何搜索图像按钮 ID。
或者还有其他方法吗?
你应该使用findViewById
方法:
ImageButton button1 = (ImageButton) findViewById(R.id.button1);
您应该在 xml 文件中设置 ID:
android:id="@+id/button1"
或者,如果您以编程方式创建 ImageButton
s,您可以这样做:
button1 = new ImageButton(activity);
button1.setId("button1");
稍后使用 findViewById
。