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.
我有一个带有标题和几个按钮的操作栏。我想为所有活动显示此操作栏。那么,我如何有效地使用它,而不是为所有屏幕包含此操作栏的布局代码?
创建一个 BaseActivity(它扩展了 Activity),您可以在其中只编写一次此代码。然后您的代码的所有其他活动都必须扩展此 BaseActivity。同样在您的 xml 布局中,为此操作栏创建一个单独的布局文件,然后使用 include 标记重用此文件。希望这可以帮助。