设为首页 加入收藏

TOP

Android Service生命周期及用法(一)
2015-07-16 12:56:23 来源: 作者: 【 】 浏览:56
Tags:Android Service 生命 周期 用法

Service概念及用途:


Android中的服务,它与Activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,Service进程并没有结束,它仍然在后台运行,那我们什么时候会用到Service呢?比如我们播放音乐的时候,有可能想边听音乐边干些其他事情,当我们退出播放音乐的应用,如果不用Service,我们就听不到歌了,所以这时候就得用到Service了,又比如当我们一个应用的数据是通过网络获取的,不同时间(一段时间)的数据是不同的这时候我们可以用Service在后台定时更新,而不用每打开应用的时候在去获取。


Service生命周期 :


Android Service的生命周期并不像Activity那么复杂,它只继承了onCreate(),onStart(),onDestroy()三个方法,当我们第一次启动Service时,先后调用了onCreate(),onStart()这两个方法,当停止Service时,则执行onDestroy()方法,这里需要注意的是,如果Service已经启动了,当我们再次启动Service时,不会在执行onCreate()方法,而是直接执行onStart()方法,具体的可以看下面的实例。


Service与Activity通信:


Service后端的数据最终还是要呈现在前端Activity之上的,因为启动Service时,系统会重新开启一个新的进程,这就涉及到不同进程间通信的问题了(AIDL)这一节我不作过多描述,当我们想获取启动的Service实例时,我们可以用到bindService和onBindService方法,它们分别执行了Service中IBinder()和onUnbind()方法。


为了让大家 更容易理解,我写了一个简单的Demo,大家可以模仿着我,一步一步的来。


第一步:新建一个Android工程,我这里命名为ServiceDemo.


第二步:修改main.xml代码,我这里增加了四个按钮,代码如下:


?
? ? android:orientation="vertical"
? ? android:layout_width="fill_parent"
? ? android:layout_height="fill_parent"
? ? >
?? android:id="@+id/text"?
? ? android:layout_width="fill_parent"
? ? android:layout_height="wrap_content"
? ? android:text="@string/hello"
? ? />
?? android:id="@+id/startservice"
? android:layout_width="fill_parent"
? android:layout_height="wrap_content"
? android:text="startService"
?/>
?? android:id="@+id/stopservice"
? android:layout_width="fill_parent"
? android:layout_height="wrap_content"
? android:text="stopService"
?/>
?? android:id="@+id/bindservice"
? android:layout_width="fill_parent"
? android:layout_height="wrap_content"
? android:text="bindService"
?/>
?? android:id="@+id/unbindservice"
? android:layout_width="fill_parent"
? android:layout_height="wrap_content"
? android:text="unbindService"
?/>


第三步:新建一个Service,命名为MyService.java代码如下:


package com.tutor.servicedemo;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.text.format.Time;
import android.util.Log;
public class MyService extends Service {
?//定义个一个Tag标签
?private static final String TAG = "MyService";
?//这里定义吧一个Binder类,用在onBind()有方法里,这样Activity那边可以获取到
?private MyBinder mBinder = new MyBinder();
?@Override
?public IBinder onBind(Intent intent) {
? Log.e(TAG, "start IBinder~~~");
? return mBinder;
?}
?@Override
?public void onCreate() {
? Log.e(TAG, "start onCreate~~~");
? super.onCreate();
?}
?
?@Override
?public void onStart(Intent intent, int startId) {
? Log.e(TAG, "start onStart~~~");
? super.onStart(intent, startId);?
?}
?
?@Override
?public void onDestroy() {
? Log.e(TAG, "start onDestroy~~~");
? super.onDestroy();
?}
?
?
?@Override
?public boolean onUnbind(Intent intent) {
? Log.e(TAG, "start onUnbind~~~");
? return super.onUnbind(intent);
?}
?
?//这里我写了一个获取当前时间的函数,不过没有格式化就先这么着吧
?public String getSystemTime(){
?
? Time t = new Time();
? t.setToNow();
? return t.toString();
?}
?
?public class MyBinder extends Binder{
? MyService getService()
? {
? ?return MyService.this;
? }
?}
}


第四步:修改ServiceDemo.java,代码如下:


package com.tutor.servicedemo;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import an

首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Android Studio 单刷《第一行代码.. 下一篇Android基础知识总结篇

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: