Android访问父控件的每个子控件
我需要访问父控件的子控件。我正在使用的代码是:
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());
}
提前感谢您的宝贵时间&帮助。
I need to access the children controls of a parent control. The code i am using is:
for (int index = 0; index <= parent.getChildCount() - 1; index++)
{
Log.d("myTag", parent.getChildAt(index).toString());
}
It works fine however i was looking for something like:
foreach(control ctl in parentControl.Children)
{
Log.d("myTag", ctl.toString());
}
Thanks in advance for your valuable time & help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您只能使用 getChildAt() 方法访问视图的子视图,因此您将无法在这样的 foreach 循环中使用它。
但是,如果您真的想要它,您可以创建一个子级列表,然后以这种方式迭代它:(
这是java中
foreach
循环的语法)但是它是不需要,这样做会浪费时间和内存。只需使用
for
循环即可。Since you can only access the children of a view using the method
getChildAt()
, you won't be able to use it in such a foreach loop.However, if you really want it, you could make a list of the children, then iterate over it this way:
(Thats the syntaxs of
foreach
loop in java)But it's not needed and you will be wasting time and memory doing so. Just use the
for
loop.