如何在 xml 的布局视图中查看不同的脚蹼?
大家好 - 我在主 xml 文件中使用脚蹼来查看应用程序中的多个布局。
例如,如果something = 1,则向用户显示一种版本的脚蹼,如果something = 2,则用户看到不同的版本。
有没有一种方法可以查看我拥有的其他脚蹼而不是主脚蹼的 xml 文件的布局?即,有没有办法在 Eclipse 中切换翻转器每个状态的视图?
谢谢!
Hey all - I am using a flipper in my main xml file to view multiple layouts in my app.
For instance, if something = 1, the user is shown one version of the flipper, where if something = 2 the user sees a different version.
Is there a way I can view the layout of the xml file for the other flippers I have rather than the main one? Ie, is there a way to switch views of each state of the flipper in eclipse?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议在您的 xml 文件中包含所有脚蹼。对于默认情况下不显示的脚蹼或全部使用
android:visibility="gone"
。然后,您可以在代码中使用flipper.setVisibility(View.VISIBLE)
将它们重新打开。其他人应该View.GONE
。对于更清晰的 XML 文件(尤其是如果您有很多翻转器),您可以对每个翻转器源使用
语句。I would suggest including all flippers in your xml file. Use
android:visibility="gone"
for the flippers that won't show by default, or all of them. Then in your code you can toggle them back on withflipper.setVisibility(View.VISIBLE)
. The others shouldView.GONE
.For a cleaner XML file (especially if you have a lot of flippers), you can use
<include>
statements to each flipper source.