码迷,mamicode.com
首页 > 其他好文 > 详细

(转) 为什么启动Activity都是写的super.onCreate

时间:2017-05-03 10:29:16      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:container   man   protect   ted   code   hello   word   父类   art   

 
  1. protected void onCreate(Bundle savedInstanceState) {  
  2.         super.onCreate(savedInstanceState);  
  3.         setContentView(R.layout.hello_world_layout);  
  4.   
  5.         if (savedInstanceState == null) {  
  6.             getSupportFragmentManager().beginTransaction()  
  7.                     .add(R.id.container, new PlaceholderFragment())  
  8.                     .commit();  
  9.         }  
  10.     }  
如果写在你自己定义的一个OnCreate(),在这个函数里写调用OnCreate的话,必然要写super.OnCreate(),否则会递归调用,
其他地方写的话,super是调用父类的,this是调用你覆盖的,不过一般没有人会去手动调用这玩意吧,因此一般是调用super.OnCreate().

(转) 为什么启动Activity都是写的super.onCreate

标签:container   man   protect   ted   code   hello   word   父类   art   

原文地址:http://www.cnblogs.com/yanquan/p/6800505.html

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