创建抽象 Activity 类
我正在为我的应用程序创建抽象活动类,我将在每个活动中重用该抽象活动类。
超级类:android.app.Activity
我的抽象类扩展了 android.app .活动 myActivity
我的应用程序中的示例活动扩展了 myActivity。
我将拥有 10-20 个这样的 exampleActivity
。
如何编写我的抽象类 (#2) 来强制我的示例类覆盖 android.app.Activity
中的方法,例如 onCreate()
和 onStart() ?
这在Java中可能吗?
I am working on creating abstract activity classes for my application that I will reuse for each activity.
Super Class: android.app.Activity
My Abstract Class extends android.app.Activity
myActivityExample activty in my application extends myActivity.
I will have 10-20 of these exampleActivity
.
How can I write my abstract class (#2) to force my example class to override methods in android.app.Activity
like onCreate()
and onStart()
?
Is this possible in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
并不真地。
但是您可以创建抽象函数 myOnCreate 和 myOnStart 并在 onCreate 和 onStart 的抽象类实现中调用它们。
您可能还想将 onCreate/onStart 设置为最终的,尽管很难看出强制 myOnCreate 而不是 onCreate 有什么好处。
Not really.
However you can create abstract functions myOnCreate and myOnStart and call those in your abstract class implementation of onCreate and onStart.
You might also want to make onCreate/onStart final, although it's difficult to see what the benefit is of forcing myOnCreate instead of onCreate.
这是可能的,
This is possible,
不。如果您需要强制其他人在其实现中重写,那么使用 onCreate 和 onStart 方法创建接口会更优雅。
并通过构造函数或设置器将接口实例传递给抽象活动类。
Nop. It's more elegant to create an interface with onCreate and onStart methods instead if you need force others to override in their implementation.
And pass the interface instance to your abstract activity class throught constructors or setters.