两种布局的视图切换器
我无法处理视图切换器。我想在顶部中心和底部中心有两个按钮。当我们点击 centertop 按钮时,一个视图应该从上到下转换,当我们点击 centerbottom 按钮时,应该可以反向转换,应该只有两个视图,请与我分享你的知识,因为我是 android 新手。
提前致谢。
I couldn't able to deal with viewswitcher. I want to have two buttons at the center top and center bottom. when we click the centertop button one view should translate from top to bottom and reverse should possible when we click centerbottom button, There should be only two views, plese share your knowledge with me coz I am new to android.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
制作两个不同的 xml 布局文件,一个是前一个布局的正向布局,另一个是前一个布局的反向布局。
按下上方按钮时,调用 setContentview 方法中的第一个 xml 文件,按下底部按钮时,调用另一个文件。
Make two different xml layout files,one with forward and one with reverse layout of the previous one.
On pressing upper button,call the first xml file in setContentview method and on pressing the bottom button, call the other one.