dev
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.mogo.map;
|
||||
|
||||
import android.os.Bundle;
|
||||
|
||||
/**
|
||||
* @author congtaowang
|
||||
* @since 2019-12-18
|
||||
* <p>
|
||||
* 生命周期
|
||||
*/
|
||||
public interface ILifeCycle {
|
||||
|
||||
void onCreate( Bundle bundle );
|
||||
|
||||
void onResume();
|
||||
|
||||
void onPause();
|
||||
|
||||
void onDestroy();
|
||||
|
||||
void onSaveInstanceState( Bundle outState );
|
||||
|
||||
// mapview only.
|
||||
void onLowMemory();
|
||||
}
|
||||
Reference in New Issue
Block a user