概述
准备中。。。
一蓑烟雨任平生
四大组件是什么
活动(Activity) 服务(Server) 广播(BroadcastReceiver) 内容提供者(ContentProvider)
四大组件的生命周期
Activity:onCreate()、onStart()、onPuase()、onResume()、onstop()、onDestoty()、onRestart()
Server:onCreate()、onBind()(首次启动会调用前面这两个方法,再次启动就不会调用了)、onUnbind()、onDestoty()
Activity之间的通信方式
Intent
借助类的静态变量
借助全局变量/Application
借助外部工具 :
– 借助SharedPreference
– 使用Android数据库SQLite
– 赤裸裸的使用File – Android剪切板
借助Service
Activity各种情况下的生命周期