如何在 xml 的布局视图中查看不同的脚蹼?

发布于 2024-10-03 11:37:50 字数 200 浏览 5 评论 0原文

大家好 - 我在主 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2024-10-10 11:37:50

我建议在您的 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 with flipper.setVisibility(View.VISIBLE). The others should View.GONE.

For a cleaner XML file (especially if you have a lot of flippers), you can use <include> statements to each flipper source.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文