16 lines
276 B
Kotlin
16 lines
276 B
Kotlin
package com.mogo.map
|
|
|
|
import android.os.Bundle
|
|
|
|
/**
|
|
* 生命周期
|
|
*/
|
|
interface ILifeCycle {
|
|
fun onCreate(bundle: Bundle?)
|
|
fun onResume()
|
|
fun onPause()
|
|
fun onDestroy()
|
|
fun onSaveInstanceState(outState: Bundle)
|
|
// mapview only.
|
|
fun onLowMemory()
|
|
} |