Example #1
0
 /* (non-Javadoc)
  * @see android.app.Activity#onResume()
  *
  */
 @Override
 protected void onResume() {
   super.onResume();
   // 调用onCreate(), 目的是刷新数据
   // onCreate(null);
   initInfo();
 }
Example #2
0
 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   this.setContentView(R.layout.notes);
   MyApplication.getInstance().addActivity(this);
   loadingFormation();
   initInfo();
 }