四大组件之ContentProvide: *ContentProvider关联的数据一般在内部存储中
*ContentProvide的生命周期由系统管理
四大组件之Service
start模式: *onCreat()1次 *onStartCommand()多次* onDestroy().调用startService启动。stopService()或stopSelf()停止
bind模式:*onCreat()1次,onBind()1次,onDestory()1次 bindService启动,unbindService停止。
四大组件之Activity:的状态,onCreat() , onStart(),onRestart(), onPause(),onResume(),onStop().onDestroy(). *Activity 的状态保存,为了回复运行需保存Activity,在Activity中的onSaveInstance()中保存,在onCreat()或onRestoreInstanceState()中恢复
Activity的启动模式:1.Standard(每次新建Activity)2,SingleTop(Activity处于栈顶不在创建)3,SingleTask(此任务栈中Activity的实例只有一份)4,SingleInstance(此Activity在整个内存中只一份,存在一个独立的任务战中)
时间: 2024-10-05 22:08:39