码迷,mamicode.com
首页 > 移动开发 > 详细

Android 父类super.onDestroy();的有关问题

时间:2014-05-17 19:13:46      阅读:767      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   class   code   c   

super.onDestroy(); 的问题。

注意:没有显式地在自己的方法中调用父类Activity的onDestroy是会报错的。
我的问题很简单,在我覆盖的onDestroy(),方法中需要调用父类的onDestroy。
我就是不懂调用的时机,就像下面两种。

1
2
3
4
protected void onDestroy() {        <br style="margin: 0px; padding: 0px;">
    super.onDestroy();<br style="margin: 0px; padding: 0px;">
    // My code;<br style="margin: 0px; padding: 0px;">
}<br style="margin: 0px; padding: 0px;">
1
2
3
4
protected void onDestroy() {        <br style="margin: 0px; padding: 0px;">
    // My code;<br style="margin: 0px; padding: 0px;">
    super.onDestroy();<br style="margin: 0px; padding: 0px;">
}<br style="margin: 0px; padding: 0px;"><br style="font: 14px/24px Tahoma; margin: 0px; padding: 0px; text-align: left; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; white-space: normal; font-size-adjust: none; font-stretch: normal; -webkit-text-stroke-width: 0px;"><span style="font: 14px/24px Tahoma; text-align: left; color: rgb(0, 0, 0); text-transform: none; text-indent: 0px; letter-spacing: normal; word-spacing: 0px; float: none; display: inline !important; white-space: normal; font-size-adjust: none; font-stretch: normal; -webkit-text-stroke-width: 0px;">请教大神,哪一种才是正确的写法?</span>
 


------解决方案--------------------
一般是这样的:
protected void onDestroy() {        
    // My code;
    super.onDestroy();
}

但取决于你的代码在onCreate的时候如何调用
------解决方案--------------------

如果严格点。必须是这样的顺序,在把你要做的处理完毕后,再释放父类资源
protected void onDestroy() {        
    // My code;
    super.onDestroy();
}
------解决方案--------------------
一般没有区别的   如果你的代码只是做你自己的事情  没啥顺序关系  当然  前提是没有引用到父类已经释放的资源(基本没遇见过,都是干自己的)

Android 父类super.onDestroy();的有关问题,布布扣,bubuko.com

Android 父类super.onDestroy();的有关问题

标签:des   android   style   class   code   c   

原文地址:http://www.cnblogs.com/wuyou/p/3733411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!