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.
我创建了一个包含我的页脚布局的footer.xml,并将这个包含在我的main.xml 中。
现在我想将我的 java 代码分成两个文件,但我不知道如何将 Footer 操作放入 Footer.java 以及如何将此文件包含到 MainActivity.java 中?
谢谢
我认为您可以创建一个扩展 Activity 的类......像 FooterActivity 并在那里实现您需要的所有页脚,之后您的 mainactivity 应该从 FooterActivity 而不是从 Activity 扩展。