service
文章平均质量分 74
czcdms
这个作者很懒,什么都没留下…
展开
-
Service(一)简介
一、 Service简介 Service是android 系统中的四大组件之一(Activity、Service、BroadcastReceiver、ContentProvider),它跟Activity的级别差不多,但不能自己运行只能后台运行,并且可以和其他组件进行交互。service可以在很多场合的应用中使用,比如播放多媒体的时候用户启动了其他Activity这个时候程序要在后台继续播放转载 2015-04-24 21:40:21 · 558 阅读 · 0 评论 -
Service(二)startService与bindService的区别
startService与bindService的区别 Service的生命周期方法比Activity少一些,只有onCreate, onStart, onDestroy 我们有两种方式启动一个Service,他们对Service生命周期的影响是不一样的。 1 通过startService Service会经历 onCreate --> onStart stopSer转载 2015-04-24 22:00:31 · 491 阅读 · 0 评论 -
Service(三)详解,2种方式,周期等
Service是Android中四大组件之一,在Android开发中起到非常重要的作用,先来看一下官方对Service的定义: A Service is an application component that can perform long-running operations in the background and does not provide a user interf转载 2015-04-25 16:24:53 · 501 阅读 · 0 评论 -
Service(四)跨应用启动 Service 并传递数据
Intent i = new Intent(); i.setComponent(new ComponentName("com.example.k2fk.startservfromoherapp","com.example.k2fk.startservfromoherapp.AppService")); startService(i); AppServic原创 2015-04-25 19:50:39 · 799 阅读 · 0 评论 -
Service(五)跨应用绑定 Service并通信(使用AIDL)
跨应用绑定 Service 要 用 AIDL Android Interface definition language 1.新建一个aidl文件 interface IAppServiceRemoteBinder { /** * Demonstrates some basic types that you can use as parameters *原创 2015-04-25 19:53:32 · 363 阅读 · 0 评论