隐藏布局中的所有控件
我有一个至少有 40 个控件的布局,包括 TextView、 Spinners .. 等 ..
我需要一些函数来隐藏所有控件。
可以在给定布局中使用控制循环进行迭代吗?将可见性设置为不可见?
例如:
For Each ctl AS Control in Layout
ctl.Setvisibility(View.INVISIBLE)
Next
提前致谢。
I have a layout with at least 40 controls, including TextView, Spinners .. etc. ..
I need some function to hide all controls.
can be iterated with a control loop in a given layout? Set the visibility to an invisible?
for example something like:
For Each ctl AS Control in Layout
ctl.Setvisibility(View.INVISIBLE)
Next
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
隐藏父母会更好,但如果您愿意,也可以只隐藏孩子
It will be better to hide parent, but if you prefer you can hide only childs
您可以隐藏所有该控件的父布局
You can Hide the parent layout of all this control