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

发布于 2024-12-11 12:09:52 字数 352 浏览 0 评论 0原文

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

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

揽月 2024-12-18 12:09:52

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

for(View child : childs)

这是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:

for(View child : childs)

(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文