标签:隐式intent onstop service 包含 rest standard 前台 instance use
Android四大组件
1.Activity活动
活动Activity是一种可以包含用户界面的组件,主要用于和用户进行交互
活动之间使用intent进行通信,激活组件,分为1.显式intent2.隐式intent
生命周期
1.onCreate()
2.onStart()
3.onResume()
4.onPause()
5.onStop()
6.onDestroy()
7.onRestart()
完整生存期:onCreate()--onDestroy()
可见生存期:onStart()--onStop()
前台生存期:onResume()--onPause()
活动启动模式
1.standard
2.singleTop
3.singleTask
4.singleInstance
2.Service服务
3.Broadcast Receiver广播
4.Content Provider内容提供者
标签:隐式intent onstop service 包含 rest standard 前台 instance use
原文地址:http://www.cnblogs.com/elephantLi/p/6138910.html