Android 菜单代码位于单独的类文件中
在我的 Android 应用程序中,选项菜单应该在每个 UI 中都可用。所以我需要将这些代码分离到一个单独的类文件中,而不是在每个活动中重复相同的代码。我怎样才能在 Android 中做到这一点?
In my android application option menu should be available in every UI. So I need to separate those codes to a separate class file instead of repeating same code in every Activity. How can I do this in Android ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是继承自“Activity”派生的自定义类。在这个基类中,您拥有选项菜单的通用代码。
One way is to inherit from a custom class that itself derives from 'Activity'. In this base class, you have the common code for the options menu.