如何在 Activity.onAttachedToWindow() 上使用反射

发布于 2024-11-07 12:14:56 字数 154 浏览 0 评论 0原文

我希望我的应用程序能够在 Android 2.0 之前的操作系统(即 1.5 和 1.6)上运行。我需要包含 2.0 及更高版本的 Activity.onAttachedToWindow() 。如何使用反射(或任何其他方法)使我的应用程序在 2.0 之前的 Android 操作系统上正常工作?

I want my app to be able to be run on pre Android 2.0 operating systems (namely 1.5 and 1.6). I need to include Activity.onAttachedToWindow() for 2.0 and above. How can I use reflection (or any other approach) to make my app work property on pre-2.0 Android operating systems?

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

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

发布评论

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

评论(1

小霸王臭丫头 2024-11-14 12:14:56

ActivityonAttachedToWindow 为空。这意味着您可以避免调用 super.onAttachedToWindow。因此,最简单的方法是:

@Override
public void onAttachedToWindow()
{   
     Log.e("TEST", "onAttachedToWindow");               
}

Android 操作系统将在 Api 级别 5+ (2.0+) 上调用 onAttachedToWindow。在 1.5/1.6 上,这个函数永远不会被调用。


如果你想通过反射从超类调用 onAttachedToWindow 的实现:

@Override
public void onAttachedToWindow()
{   
    Log.e("TEST", "onAttachedToWindow");

    /* calling:
     * super.onAttachedToWindow(); 
     */
    Class<?> activityClass = (Class<?>)getClass().getSuperclass();
    try
    {
        Method superOnAttachedToWindow = activityClass.getMethod("onAttachedToWindow");
        superOnAttachedToWindow.invoke(this);
    }
    catch(InvocationTargetException ex)
    {
        //TODO: add exception handling
    }
    catch(IllegalAccessException ex)
    {
        //TODO: add exception handling;
    }
    catch(IllegalArgumentException ex)
    {
        //TODO: add exception handling
    }
    catch(NoSuchMethodException ex)
    {
        /* you are here if `onAttachedToWindow` does not exist */           
    }

}

Activity's onAttachedToWindow is empty. This means you can avoid calling super.onAttachedToWindow. So the easiest way would be:

@Override
public void onAttachedToWindow()
{   
     Log.e("TEST", "onAttachedToWindow");               
}

Android OS will call your onAttachedToWindow on Api Level 5+ (2.0+). And on 1.5/1.6 this function is just never called.


If you want to call implementation of onAttachedToWindow from super class via reflection:

@Override
public void onAttachedToWindow()
{   
    Log.e("TEST", "onAttachedToWindow");

    /* calling:
     * super.onAttachedToWindow(); 
     */
    Class<?> activityClass = (Class<?>)getClass().getSuperclass();
    try
    {
        Method superOnAttachedToWindow = activityClass.getMethod("onAttachedToWindow");
        superOnAttachedToWindow.invoke(this);
    }
    catch(InvocationTargetException ex)
    {
        //TODO: add exception handling
    }
    catch(IllegalAccessException ex)
    {
        //TODO: add exception handling;
    }
    catch(IllegalArgumentException ex)
    {
        //TODO: add exception handling
    }
    catch(NoSuchMethodException ex)
    {
        /* you are here if `onAttachedToWindow` does not exist */           
    }

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