Ejemplo n.º 1
0
 @Override
 protected void onActivityResult(int arg0, int arg1, Intent arg2) {
   if (LogUtils.isDebugLogEnabled())
     LogUtils.debugLog(
         LOG_TAG, "[LIFECYCLE] onActivityResult(): " + this.getClass().getSimpleName());
   super.onActivityResult(arg0, arg1, arg2);
 }
Ejemplo n.º 2
0
 protected void backPress() {
   try {
     super.onBackPressed();
   } catch (IllegalStateException ex) {
     LogUtils.errorLog(LOG_TAG, "Cannot transact after activity onPause", ex);
   }
 }
Ejemplo n.º 3
0
 @Override
 public void onStart() {
   if (LogUtils.isDebugLogEnabled())
     LogUtils.debugLog(LOG_TAG, "[LIFECYCLE] onStart(): " + this.getClass().getSimpleName());
   super.onStart();
 }