@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); }
protected void backPress() { try { super.onBackPressed(); } catch (IllegalStateException ex) { LogUtils.errorLog(LOG_TAG, "Cannot transact after activity onPause", ex); } }
@Override public void onStart() { if (LogUtils.isDebugLogEnabled()) LogUtils.debugLog(LOG_TAG, "[LIFECYCLE] onStart(): " + this.getClass().getSimpleName()); super.onStart(); }