android 脚本for循环执行,android在Java中使用for循环迭代按钮id

举一个简单的解决方案,您应在包含视图的孩子尝试迭代:

考虑到你有你的按钮都布局内是这样的:

android:id="@+id/layout_container_buttons"

android:layout_width="match_parent"

android:layout_height="fill_parent"

android:orientation="vertical">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="New Button1"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="New Button2"/>

然后只是简单的迭代所有的布局儿童:

ViewGroup layout = (ViewGroup)findViewById(R.id.layout_container_buttons);

for (int i = 0; i < layout.getChildCount(); i++) {

View child = layout.getChildAt(i);

if(child instanceof Button)

{

Button button = (Button) child;

button.setText(spliter[i]);

}

}

但是,更好的方法是根据您的数组大小动态创建按钮并将它们添加到LinearLayout inste将它们复制/粘贴到layout.xml文件中。这可以帮助您在每次需要添加/删除某些内容时获得阵列上每个值的确切数量的按钮。

ViewGroup layout = (ViewGroup) findViewById(R.id.layout_container_buttons);

for (int i = 0; i < splitter.length; i++) // iterate over your array

{

// Create the button

Button button = new Button(this);

button.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,

LinearLayout.LayoutParams.WRAP_CONTENT));

button.setText(splitter[i]);

layout.addView(button); // add to layout

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值