Android访问父控件的每个子控件

时间:2011-10-22 16:04:17

标签: android foreach parent-child

我需要访问父控件的子控件。我正在使用的代码是:

for (int index = 0; index <= parent.getChildCount() - 1; index++) 
{
   Log.d("myTag", parent.getChildAt(index).toString());
}

它工作正常,但我正在寻找类似的东西:

foreach(control ctl in parentControl.Children)
{
   Log.d("myTag", ctl.toString());
}

提前感谢您宝贵的时间和时间。帮助

1 个答案:

答案 0 :(得分:3)

由于您只能使用getChildAt()方法访问视图的子项,因此您无法在这样的foreach循环中使用它。 但是,如果您真的想要它,您可以列出子项列表,然后以这种方式迭代:

for(View child : childs)

(这是java中foreach循环的语法)

但这不是必需的,你会浪费时间和记忆。只需使用for循环。