package com.mogo.map; import android.os.Bundle; /** * @author congtaowang * @since 2019-12-18 *

* 生命周期 */ public interface ILifeCycle { void onCreate( Bundle bundle ); void onResume(); void onPause(); void onDestroy(); void onSaveInstanceState( Bundle outState ); // mapview only. void onLowMemory(); }