如何使按钮在单击后立即不可见?
我想知道如何使按钮可见,但单击时我希望它不可见,因此根本不会显示。
I would like to know how to make a button visible but when clicked I want it to be invisible so it won't be shown at all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这使得它变得不可见,但仍然占用布局中的空间,将最后一行切换为:
将使其“折叠”,并且它不仅不可见,而且也不会占用布局中的空间。
This makes it go invisible but still take up space in the layout, switching the last row for:
would make it "fold" and it will not only be invisible but won't take up space in the layuout either.
这很简单。按钮的 OnClickListener() 内的
setVisibility(View.Invisible)
It's quite simple.
setVisibility(View.Invisible)
insideOnClickListener()
of the button将此行放入您的
Button 的单击方法中。
编辑
:如果你完全消失了按钮视图,然后尝试
put this line in your
Button's on click method.
EDIT: if you make totally gone the Button view and then try
只需在 OnClickListener 中使用它:
如果您希望它完全不可见并占用布局空间,请使用
Just use this in your OnClickListener:
If you want it to be totally invisible and take up layout space use
你可以这样做。
这将从布局中删除按钮,以便其他控件将使用该空间。
如果您只想隐藏并保留按钮大小与其他布局,您可以使用
you can do like this way.
This will be remove your button from your layout so other control will be used that space.
If you want to just hide and keep button size with another layout you can use