Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android初学者:onDestroy大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
在覆盖活动的ondestroy时,我应该在super.onDestroy()之前或之后放置命令吗?
protected void onDestroy() {

    //option 1: callBACk before or ...

    super.onDestroy();

    //option 2: callBACk after super.onDestroy();
}

(现在我担心:如果super.onDestroy太快,它将永远不会到达选项2.)

解决方法

当你调用super.onDestroy()时会发生这种情况.

Android Source

protected void onDestroy() {
    mCalled = true;

    // dismiss any dialogs we are managing.
    if (mManagedDialogs != null) {

        final int numDialogs = mManagedDialogs.size();
        for (int i = 0; i < numDialogs; i++) {
            final Dialog dialog = mManagedDialogs.valueAt(i);
            if (dialog.isShowing()) {
                dialog.dismiss();
            }
        }
    }

    // also dismiss search dialog if showing
    // TODO more generic than just this manager
    SearchManager searchManager = 
        (SearchManager) getSystemservice(Context.SEARCH_serviCE);
    searchManager.stopSearch();

    // close any cursors we are managing.
    int numcursors = mManagedcursors.size();
    for (int i = 0; i < numcursors; i++) {
        Managedcursor c = mManagedcursors.get(i);
        if (c != null) {
            c.mcursor.close();
        }
    }
}

从本质上讲,这意味着如果您在代码之前或之后调用它并不重要.

大佬总结

以上是大佬教程为你收集整理的Android初学者:onDestroy全部内容,希望文章能够帮你解决Android初学者:onDestroy所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。