我需要访问父控件的子控件。我正在使用的代码是:
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());
}
提前感谢您宝贵的时间和时间。帮助
答案 0 :(得分:3)
由于您只能使用getChildAt()
方法访问视图的子项,因此您无法在这样的foreach循环中使用它。
但是,如果您真的想要它,您可以列出子项列表,然后以这种方式迭代:
for(View child : childs)
(这是java中foreach
循环的语法)
但这不是必需的,你会浪费时间和记忆。只需使用for
循环。