为单个活动加载两个布局

发布于 2024-11-28 00:09:39 字数 203 浏览 0 评论 0原文

我有两个 layout.xml 文件。我需要在活动中加载任一 XML。假设最初我将使用 SetContentView 加载一个活动,如果完成 button 单击,那么我必须加载另一个 layout.xml 文件。

我该怎么做?

这种改变在活动中会经常进行。

I'm having two layout.xml files. I need to load either one of the XML in a activity. Say initially i will be loading an activity using SetContentView and if a button click is done then i have to load another layout.xml file.

How can i do this?

This change will be frequently done in the activity.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

那小子欠揍 2024-12-05 00:09:39

假设您有 layout1.xmllayout2.xml

使用

setContentView(layout1);

setContentView(layout2);

Careful

在它们之间进行更改

如果您有使用 findViewById() 引用的按钮、文本视图...,则必须在调用 setContentView() 后再次重新引用它们

Say you have layout1.xml and layout2.xml

Change between them using

setContentView(layout1);

setContentView(layout2);

Careful

If you have buttons,textviews... that you reference using findViewById(), you must re-reference them again after calling setContentView()

月亮是我掰弯的 2024-12-05 00:09:39

调用

setContentView(layout1);

并在您的 onClick() 方法中调用

setContentView(layout2);    

call

setContentView(layout1);

and in your onClick() method, call

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