想要在android中自动设置行格式
您好,我在我的应用程序中使用了滚动视图。在滚动视图中,我采用了表格布局和其中的几个表格行。现在我是隐形的,我的行之一是隐形的。但我的问题是,在它变得不可见之后,该行下面的行将不会上升。它在两行之间留下空白。
Hi i have used the scrollview in my application. In scrollview i have taken the tablelayout and in that several tablerows. Now i am invisible one of my row it is get invisible. But my problem is after its get invisible the row below the row won't come the step up. It leaves the blank space between two rows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使布局消失,而不是使其不可见。layout.setVisibility
(LinearLayout.GONE);
You should make the layout gone instead of making it invisible
layout.setVisibility(LinearLayout.GONE);