android的Activity扩展器

发布于 2024-10-19 16:34:21 字数 950 浏览 5 评论 0原文

android.app.Activty
    |
    |
    |
    |
com.mycompany.ActivityWrapper
    |  <--------------------------------\
    |       \                           |
    |       |                           |
    |       |                           |
    |   android.app.ListActivty     android.app.ExpandableListActivity
    |           |                       |
    |           |                       |
    |           |                       |
MyActivity1     |                      |
                |                       |
            MyActivity2                 MyActivity3

我需要创建扩展 android.app.Activity 的类 (com.mycompany.ActivityWrapper) 和 扩展以下方法:

  • onCreate
  • onResume
  • onConfigurationChanged
  • onMenuOpened

我想要我的所有活动(已经在当前 android.app.Activity、android.app.?ListActivity 处扩展) 使用我的 com.mycompany.ActivityWrapper 的代码

我不知道如何实现这个(也许通过反射%))。

请帮助我,请

android.app.Activty
    |
    |
    |
    |
com.mycompany.ActivityWrapper
    |  <--------------------------------\
    |       \                           |
    |       |                           |
    |       |                           |
    |   android.app.ListActivty     android.app.ExpandableListActivity
    |           |                       |
    |           |                       |
    |           |                       |
MyActivity1     |                      |
                |                       |
            MyActivity2                 MyActivity3

I need to make class (com.mycompany.ActivityWrapper) which extends android.app.Activity and
extends following methods:

  • onCreate
  • onResume
  • onConfigurationChanged
  • onMenuOpened

I want all my activities (which already extends at the monent android.app.Activity, android.app.?ListActivity)
use code of my com.mycompany.ActivityWrapper

I have no ideas how to implement this ( maybe via reflection %) ).

Help me, plz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽清梦 2024-10-26 16:34:21

我有一些相同的问题,尽管这样做让我很痛苦,但唯一有用的方法是创建多个基类。例如,您将有一个 ActivityWrapper、ListActivityWrapper、ExpandableListActivityWrapper。您可以通过将要调用的公共代码移动到一个新类(例如 ActivityExtensions)中来避免一些代码重复,您只需从各种 onCreate 中调用它即可。代码>方法等等。

I have some of the same issues, and although it pained me to do so the only useful way of doing it is by creating multiple base classes. For example, you would have a ActivityWrapper, ListActivityWrapper, ExpandableListActivityWrapper. You can get around some of the code duplication by moving the common code you want to call off into a new class, something like ActivityExtensions, which you just call in to from the various onCreate methods and so on.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文