Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在android开发中是否可以使用一个java类来处理两个或多个资源布局?我想用一个 java 类本身创建一个多页注册页面。
简单的解决方案:在主类的框架布局下使用片段。
更改解决方案:使用 View Visibility GONE/VISIBLE 在一个活动中加载多个视图
改变解决方案:您可以通过简单地调用 setContentView(R.layout."new layout"); 在本地加载以前的视图数据并加载新的内容视图。