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().