如果通过bindService方式开启服务,那么服务的生命周期是()。
A. onCreate(),onBind(),onUnBind(),onDestroy()
B. onCreate(),onStart(),onUnBind(),onDestroy()
C. onCreate(),onBind(),onDestroy()
D. onCreate(),onStart(),onBind(),onUnBind(),onDestroy()
查看答案
下列关于Service服务的描述中,错误的是()。
A. Service是没有用户界面的,不能与用户交互。
B. Service可以通过Context.startService()启动
C. Service可以通过Context.bindService()启动
D. Service不需要在清单文件中配置
Android应用程序的四大组件是指()。
Activity, Dialog、 Service和Intent
B. Activity, Service, BroadCast Receiver和Content Provider
C. Activity. Service, BroadCast Receiver和Intent
D. Activity, Dialog、 Service和Content Provider
Service服务是运行在子线程中的。
A. 对
B. 错
不管使用哪种方式启动Service,它的生命周期都是一样的。
A. 对
B. 错