我是靠谱客的博主 拉长飞鸟,最近开发中收集的这篇文章主要介绍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

}

最后

以上就是拉长飞鸟为你收集整理的android 脚本for循环执行,android在Java中使用for循环迭代按钮id的全部内容,希望文章能够帮你解决android 脚本for循环执行,android在Java中使用for循环迭代按钮id所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部