gpt4 book ai didi

Android以编程方式查找ViewByID

转载 作者:行者123 更新时间:2023-11-29 18:07:54 26 4
gpt4 key购买 nike

我的布局文件中有 4 个按顺序编号的按钮。在我的代码中,我想在循环中获取与我们在循环中的位置相对应的广告,例如,在循环中第二次,我会返回 advert2。

谁能帮忙。谢谢

Button advert1 = (Button) findViewById(R.id.advert1);
Button advert2 = (Button) findViewById(R.id.advert2);
Button advert3 = (Button) findViewById(R.id.advert3);
Button advert4 = (Button) findViewById(R.id.advert4);

最佳答案

Button[] btnArr= new Button[4];

int[] arr = new int[4];

arr[0]=R.id.advert1;
arr[1]=R.id.advert2;
arr[2]=R.id.advert3;
arr[3]=R.id.advert4;

for(int i=0;i<4+i++)
{
btnArr[i]=(Button) findViewById(arr[i]);
}

关于Android以编程方式查找ViewByID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12435880/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com