按下按钮时如何隐藏/显示元素?
我正在尝试学习如何使用 Eclipse IDE 开发 Android。我现在想做的是在按下按钮时使隐藏的 TableLayout 可见。但是,我不知道需要在按钮的 OnClick 属性中放入什么内容。
另外,是否有任何在线教程可以帮助我学习如何在 Eclipse 中开发 Android 应用程序?
谢谢!
I'm trying to learn how to develop Android using the Eclipse IDE. What I'm trying to do right now is make a hidden TableLayout visible when a button is pressed. However, I have no idea as to what I need to put in the button's OnClick property.
Also, are there any tutorials online that could help me learn how to develop Android apps in Eclipse?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我们只需在
onClickListener()
中使用findViewById(int)
获取 TableLayout 的引用即可。获得 TableLayout 对象后,调用setVisibility(View.VISIBLE)
well just take the reference of the TableLayout by using
findViewById(int)
in theonClickListener()
. once you have the object of TableLayout, callsetVisibility(View.VISIBLE)
onClick()
方法中类似的东西应该可以解决问题。Something like that within your
onClick()
method should do the trick.尝试:
希望这有效。
Try:
Hope this works.
在 MainActivity 类中尝试此操作:
/* 显示按钮的 onClick 方法 */
/* 隐藏按钮的 onClick 方法 */
并在 onCreate 方法中尝试此操作:
Try this in MainActivity class :
/* onClick method of show button */
/* onClick method of hide button */
and try this in onCreate method :