如何在Java中隐藏面板
我正在开发一个java问卷应用程序,有一个问题: 例如,有两个主题,第一个主题有一个子题,所有题都是单选题。假设我点击第一个主要问题的一个选项,它的子问题应该被触发并显示在第一个主要问题和第二个问题之间。如果我再次单击该选项,子问题应该会消失。 如何使问题面板动画显示和隐藏?能简单介绍一下基本方法吗?谢谢。
I am working on a java questionnaire app, and there is one problem:
for example, there is two main questions, and the first main question has a subquestion, all the questions are sigle choice. Assuming that I click on one choice of the first main question, its subquestion should be triggered out and displayed between the first main question and the second question. If I click on the choice again, the subquestion should be disappeared.
How can I make the question panels show and hide animately? Can you just tell me the basic methods? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一些关于在 java 中以可视方式隐藏某些内容的示例的基本代码。
Here is some basic code on an example of hiding something visually in java.