`
quanminchaoren
  • 浏览: 924318 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Android Service

阅读更多
1. Service生命周期
(1)Service生命周期只有onCreate, onStart和onDestroy,没有onResume, onPause和onStop 。如果你在onCreate或onStart做一些很耗时间的事情,最好启动一个线程来完成,因为如果Service是跑在主线程中的,会影响到你的UI操作或者阻塞主线程中的其他事情。
(2)Android系统会尽量保持使用Service的进程尽可能长(Service被启动或者有客户端绑定到Service)。当系统内存变低,系统需要kill现存的进程时,Service的hosting进程的优先级将会在下列的可能中保持更高:
If the service is currently executing code in its onCreate(), onStart(), or onDestroy() methods, then the hosting process will be a foreground process to ensure this code can execute without being killed.
If the service has been started, then its hosting process is considered to be less important than any processes that are currently visible to the user on-screen, but more important than any process not visible. Because only a few processes are generally visible to the user, this means that the service should not be killed except in extreme low memory conditions.
If there are clients bound to the service, then the service's hosting process is never less important than the most important client. That is, if one of its clients is visible to the user, then the service itself is considered to be visible.
(3)大多数时间你的Service是运行的,但在严重的内存压力下它也可能被系统kill。如果是这样,系统会在稍后尝试重新启动这个Service 。 An important consequence of this is that if you implement onStart()  to schedule work to be done asynchronously or in another thread, then you may want to write information about that work into persistent storage during the onStart() call so that it does not get lost if the service later gets killed.
Other application components running in the same process as the service (such as an Activity) can, of course, increase the importance of the overall process beyond just the importance of the service itself.

2. Service的调用
(1)Context.startService():Service会经历onCreate -> onStart(如果Service还没有运行,则android先调用onCreate()然后调用onStart();如果Service已经运行,则只调用onStart(),所以一个Service的onStart方法可能会重复调用多次 );stopService的时候直接onDestroy,如果是调用者自己直接退出而没有调用stopService的话,Service会一直在后台运行。该Service的调用者再启动起来后可以通过stopService关闭Service。 注意,多次调用Context.startservice()不会嵌套(即使会有相应的onStart()方法被调用),所以无论同一个服务被启动了多少次,一旦调用Context.stopService()或者stopSelf(),他都会被停止。补充说明:传递给startService()的Intent对象会传递给onStart()方法。调用顺序为:onCreate --> onStart(可多次调用) --> onDestroy。
(2)Context.bindService():Service会经历onCreate() -> onBind(),onBind将返回给客户端一个IBind接口实例,IBind允许客户端回调服务的方法,比如得到Service运行的状态或其他操作。这个时候把调用者(Context,例如Activity)会和Service绑定在一起,Context退出了,Srevice就会调用onUnbind -> onDestroyed相应退出,所谓绑定在一起就共存亡了 。
补充说明:传递给bindService()的Intent对象会传递给onBind(),传递给unbindService()的Intent对象会传递给onUnbind()方法。 调用顺序为:onCreate --> onBind(只一次,不可多次绑定) --> onUnbind --> onDestory。
(3)注意事项:在Service每一次的开启关闭过程中,只有onStart可被多次调用(通过多次startService调用),其他onCreate,onBind,onUnbind,onDestory在一个生命周期中只能被调用一次。还有一点,目前我没有遇到过需要startService和bindService交互使用的情况(我认为不会有这种需求),所以不必去考虑交互的问题,待遇到时再考虑不迟。
(4)BroadcastReceiver只能通过startService启动Service ,因为广播本身生命周期很短,bind的话没有意义:Method bindService can not be called from an BroadcastReceiver component. A pattern you can use to communicate from an BroadcastReceiver to a Service is to call startService(Intent) with the arguments containing the command to be sent, with the service calling its stopSelf(int) method when done executing that command. See the API demo App/Service/Service Start Arguments Controller for an illustration of this. It is okay, however, to use this method from an BroadcastReceiver that has been registered with registerReceiver(BroadcastReceiver, IntentFilter), since the lifetime of this BroadcastReceiver is tied to another object (the one that registered it).



3. 示例代码

(1)调用者Activity

Java代码
1.public class TServiceHolder extends Activity {  
2.    private boolean isBound;  
3.    private TService tService;  
4.    private int statusCode;  
5.      
6.    private ServiceConnection conn = new ServiceConnection() {  
7.        // Called when a connection to the Service has been established, with the IBinder of the communication channel to the Service.  
8.        public void onServiceConnected(ComponentName name, IBinder service) {  
9.            tService = ( (TService.LocalBinder) service ).getService();  
10.            statusCode = ( (TService.LocalBinder) service ).getStatusCode();  
11.            Toast.makeText(TServiceHolder.this, "Service Connected", Toast.LENGTH_SHORT).show();  
12.        }  
13.          
14.        //无法被触发,原因未能找到  
15.        public void onServiceDisconnected(ComponentName name) {  
16.            tService = null;  
17.            Toast.makeText(TServiceHolder.this, "Service DisConnected", Toast.LENGTH_SHORT).show();  
18.        }  
19.    };  
20.    public void onCreate(Bundle savedInstanceState) {  
21.        super.onCreate(savedInstanceState);  
22.        setContentView(R.layout.main);  
23.        initButtons();  
24.    }  
25.      
26.    private void initButtons() {  
27.        Button startButton = (Button) findViewById(R.id.startService);  
28.        Button bindButton = (Button) findViewById(R.id.bindService);  
29.        Button unbindButton = (Button) findViewById(R.id.unbindService);  
30.        Button stopButton = (Button) findViewById(R.id.stopService);  
31.          
32.        startButton.setOnClickListener(new Button.OnClickListener() {  
33.            public void onClick(View v) {  
34.                Intent i = new Intent(TServiceHolder.this, TService.class);  
35.                TServiceHolder.this.startService(i);  
36.            }  
37.        });  
38.        bindButton.setOnClickListener(new Button.OnClickListener() {  
39.            public void onClick(View v) {  
40.                Intent i = new Intent(TServiceHolder.this, TService.class);  
41.                TServiceHolder.this.bindService(i, conn, Context.BIND_AUTO_CREATE);  
42.                isBound = true;  
43.            }  
44.        });  
45.        unbindButton.setOnClickListener(new Button.OnClickListener() {  
46.            public void onClick(View v) {  
47.                if (isBound) {  
48.                    TServiceHolder.this.unbindService(conn);  
49.                    isBound = false;  
50.                }  
51.            }  
52.        });  
53.        stopButton.setOnClickListener(new Button.OnClickListener() {  
54.            public void onClick(View v) {  
55.                Intent i = new Intent(TServiceHolder.this, TService.class);  
56.                TServiceHolder.this.stopService(i);  
57.            }  
58.        });  
59.    }  
60.      
61.} 
public class TServiceHolder extends Activity {
private boolean isBound;
private TService tService;
private int statusCode;

private ServiceConnection conn = new ServiceConnection() {
// Called when a connection to the Service has been established, with the IBinder of the communication channel to the Service.
public void onServiceConnected(ComponentName name, IBinder service) {
tService = ( (TService.LocalBinder) service ).getService();
statusCode = ( (TService.LocalBinder) service ).getStatusCode();
Toast.makeText(TServiceHolder.this, "Service Connected", Toast.LENGTH_SHORT).show();
}

//无法被触发,原因未能找到
public void onServiceDisconnected(ComponentName name) {
tService = null;
Toast.makeText(TServiceHolder.this, "Service DisConnected", Toast.LENGTH_SHORT).show();
}
    };
public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        initButtons();
    }

private void initButtons() {
Button startButton = (Button) findViewById(R.id.startService);
Button bindButton = (Button) findViewById(R.id.bindService);
Button unbindButton = (Button) findViewById(R.id.unbindService);
Button stopButton = (Button) findViewById(R.id.stopService);

startButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(TServiceHolder.this, TService.class);
TServiceHolder.this.startService(i);
}
});
bindButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(TServiceHolder.this, TService.class);
TServiceHolder.this.bindService(i, conn, Context.BIND_AUTO_CREATE);
isBound = true;
}
});
unbindButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
if (isBound) {
TServiceHolder.this.unbindService(conn);
isBound = false;
}
}
});
stopButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(TServiceHolder.this, TService.class);
TServiceHolder.this.stopService(i);
}
});
}

} (2)Service

Java代码
1.public class TService extends android.app.Service {  
2.    private final String TAG = "Service";  
3.    private final int NOTIFICATION_ID = 1;  
4.    private NotificationManager nManager;  
5.      
6.    private LocalBinder localBinder = new LocalBinder();  
7.    private int statusCode;  
8.      
9.    public void onCreate() {  
10.        Log.i(TAG, "Service.onCreate");  
11.        nManager = (NotificationManager) getSystemService(android.content.Context.NOTIFICATION_SERVICE);  
12.        showNotification();  
13.    }  
14.    private void showNotification() {  
15.        Notification n = new Notification(R.drawable.face_1, "Service启动", System.currentTimeMillis());  
16.        PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, TServiceHolder.class), 0);  
17.        n.setLatestEventInfo(this, "任务标题", "任务内容", contentIntent);  
18.        nManager.notify(NOTIFICATION_ID, n); // 任务栏启动  
19.    }  
20.    public void onStart(Intent intent, int startId) {  
21.        Log.i(TAG, "Service.onStart");  
22.    }  
23.    public IBinder onBind(Intent intent) {  
24.        Log.i(TAG, "Service.onBind");  
25.        /* 
26.         * 调用者和Service间是依靠IBinder对象进行通信的,Service的onBind()返回的IBinder对象传递给调用者中ServiceConnection对象的onServiceConnected()方法(以参数形式接收); 
27.         * TService的调用者就可以利用这个IBinder获得TService对象,进而对TService进行操作控制; 
28.         * TService的调用者也可以利用这个IBinder获得其他信息,比如TService的状态statusCode。 
29.         */   
30.        return localBinder;   
31.    }  
32.    /* 
33.     * 当应用程序bind一个Service后,该应用程序和Service之间就能进行互相通信,通常,这种通信的完成依靠于我们定义的一些接口,例如下面的LocalBinder。 
34.     */ 
35.    class LocalBinder extends Binder {  
36.        public TService getService() {  
37.            return TService.this; // Service本身  
38.        }  
39.        public int getStatusCode() {  
40.            return statusCode;  
41.        }  
42.    }  
43.    public void onRebind(Intent i) {  
44.        Log.i(TAG, "Service.onRebind");  
45.    }  
46.    public boolean onUnbind(Intent i) {  
47.        Log.i(TAG, "Service.onUnbind");  
48.        return false;  
49.    }  
50.    public void onDestroy() {  
51.        nManager.cancel(NOTIFICATION_ID); // 任务栏关闭  
52.        Log.i(TAG, "Service.onDestroy");  
53.    }  
54.} 
public class TService extends android.app.Service {
private final String TAG = "Service";
private final int NOTIFICATION_ID = 1;
private NotificationManager nManager;

private LocalBinder localBinder = new LocalBinder();
private int statusCode;

public void onCreate() {
Log.i(TAG, "Service.onCreate");
nManager = (NotificationManager) getSystemService(android.content.Context.NOTIFICATION_SERVICE);
showNotification();
}
private void showNotification() {
Notification n = new Notification(R.drawable.face_1, "Service启动", System.currentTimeMillis());
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, TServiceHolder.class), 0);
n.setLatestEventInfo(this, "任务标题", "任务内容", contentIntent);
nManager.notify(NOTIFICATION_ID, n); // 任务栏启动
}
public void onStart(Intent intent, int startId) {
Log.i(TAG, "Service.onStart");
}
public IBinder onBind(Intent intent) {
Log.i(TAG, "Service.onBind");
/*
* 调用者和Service间是依靠IBinder对象进行通信的,Service的onBind()返回的IBinder对象传递给调用者中ServiceConnection对象的onServiceConnected()方法(以参数形式接收);
* TService的调用者就可以利用这个IBinder获得TService对象,进而对TService进行操作控制;
* TService的调用者也可以利用这个IBinder获得其他信息,比如TService的状态statusCode。
*/
return localBinder;
}
/*
* 当应用程序bind一个Service后,该应用程序和Service之间就能进行互相通信,通常,这种通信的完成依靠于我们定义的一些接口,例如下面的LocalBinder。
*/
class LocalBinder extends Binder {
public TService getService() {
return TService.this; // Service本身
}
public int getStatusCode() {
return statusCode;
}
}
public void onRebind(Intent i) {
Log.i(TAG, "Service.onRebind");
}
public boolean onUnbind(Intent i) {
Log.i(TAG, "Service.onUnbind");
return false;
}
public void onDestroy() {
nManager.cancel(NOTIFICATION_ID); // 任务栏关闭
Log.i(TAG, "Service.onDestroy");
}

4. 与远程Service通信(进程间Service通信)

如何两个进程间的Service需要进行通信,则需要把对象序列化后进行互相发送。
Android提供了一个 AIDL (Android接口定义语言)工具来处理序列化和通信。这种情况下Service需要以aidl文件的方式提供服务接口,AIDL工具将生成一个相应的java接口,并且在生成的服务接口中包含一个功能调用的stub服务桩类。Service的实现类需要去继承这个 stub服务桩类。Service的onBind方法会返回实现类的对象,之后你就可以使用它了,参见下例:
先创建一个IMyRemoteService.aidl文件,内容如下:

package com.wissen.testApp;

interface IMyRemoteService {
    int getStatusCode();
}

如果你正在使用eclipse的 Android插件,则它会根据这个aidl文件生成一个Java接口类。生成的接口类中会有一个内部类Stub类,你要做的事就是去继承该Stub类:

package com.wissen.testApp;

class RemoteService implements Service {
    int statusCode;
  
    @Override
    public IBinder onBind(Intent arg0) {
        return myRemoteServiceStub;
    }

    private IMyRemoteService.Stub myRemoteServiceStub = new IMyRemoteService.Stub() {
        public int getStatusCode() throws RemoteException {
            return 0;
        }
    };
  
    …
}

当客户端应用连接到这个Service时,onServiceConnected方法将被调用,客户端就可以获得IBinder对象。参看下面的客户端onServiceConnected方法:


ServiceConnection conn = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        IMyRemoteService myRemoteService = IMyRemoteService.Stub.asInterface(service);
        try {
            statusCode = myRemoteService.getStatusCode();
       } catch(RemoteException e) {
           // handle exception
       }
        Log.i(”INFO”, “Service bound “);
    }
  
    …
};

分享到:
评论
1 楼 haking 2011-07-14  
同时使用startService和bindService是正常的。当你想和service通信而且想保持在context退出后service仍然运行的情况下。就可以这样使用。

相关推荐

    android service 简单实例源代码

    在Android开发中,Service是四大组件之一,它在后台运行,不与用户界面直接交互,常用于执行长时间的任务,如播放音乐、网络通信等。本篇文章将深入解析"android service 简单实例源代码",帮助你理解如何在Android...

    Android Service 实现下载,前台、通知栏同步更新

    在Android应用开发中,Service是用于执行长时间运行操作的一个组件,比如后台下载任务。本教程将详细介绍如何使用Android Service来实现文件下载,并在前台显示进度,同时通过通知栏同步更新下载进度。 首先,我们...

    android service toast 01

    在Android开发中,Service是应用组件之一,它可以在后台长时间运行,即使用户界面不在活动状态。Service主要用于执行长时间运行的任务,如音乐播放、网络通信等。而`Toast`则是一种轻量级的通知方式,用于显示短暂的...

    Android service

    在Android应用开发中,"Service" 是一个非常重要的组件,它允许程序在后台长时间运行,即使用户已经离开了应用程序。在给定的标题"Android service"中,我们可以理解为讨论的是如何利用Android服务来实现特定的功能...

    Android service讲解文档ppt

    在Android应用开发中,Service是四大组件之一,它在后台执行长时间运行的操作,不与用户界面直接交互。本讲解文档将深入探讨Local Service和Remote Service的实现与使用,以及广播接收器的重要作用。 首先,我们来...

    Android Service下载,EventBus更新界面

    在Android应用开发中,Service和EventBus是两个重要的组件,它们在实现后台任务处理和界面交互方面发挥着关键作用。Service用于在后台长时间运行任务,而EventBus则是一种优秀的事件总线框架,使得组件间通信更为...

    android service的小实例

    在Android应用开发中,Service是四大组件之一,用于在后台执行长时间运行的操作,即使用户界面不在活动状态。本文将通过四个小实例详细介绍Android Service的四种启动方式:启动方式、绑定方式、线程方式以及AIDL...

    android service下载资源,同时解压资源

    在Android开发中,Service是一种非常重要的组件,它可以在后台长时间运行,执行一些不需要与用户交互的任务。本示例中,我们关注的是如何利用Service来实现资源的异步下载,并且在下载完成后对ZIP文件进行解压。这个...

    android service 学习(下)

    ### Android Service 学习(下): 进程间通信与 AIDL 在深入探讨 Android Service 的高级用法时,我们不可避免地会接触到进程间通信(IPC)这一关键概念。由于 Android 应用程序通常在各自独立的进程中运行,因此它们...

    Android Service深入解析Demo

    在Android应用开发中,Service是四大组件之一,它在后台长时间运行,不依赖于任何用户界面,用于执行长时间运行的任务,如播放音乐、网络通信等。这篇博客"Android Service深入解析Demo"通过实例深入讲解了Service的...

    Android Service简单实例

    在Android应用开发中,Service是四大组件之一,用于在后台执行长时间运行的操作,即使用户界面关闭也能继续工作。本篇文章将深入探讨`startService`类型的Android Service,通过一个简单的实例来展示其工作原理和...

    android service

    在Android系统中,Service是一种非常重要的组件,它允许应用程序在后台长时间运行操作,即使用户界面已经关闭。Service主要用于执行长时间运行的任务,如播放音乐、网络通信或者定期数据同步。本篇我们将深入探讨...

    Android-AndroidService下载文件

    在Android应用开发中,`Service` 是一个非常重要的组件,它允许应用程序在后台长时间运行操作,即使用户已经离开或关闭了应用界面。本教程将详细讲解如何利用Android的`Service` 组件来实现文件下载功能。 一、...

    android Service类简介

    Service是Android系统中的一个重要组件,它是应用程序框架的一部分,允许开发者在后台执行长时间运行的操作而无需与用户交互。这篇博客文章将深入介绍Android Service类的基本概念、功能、生命周期以及如何在实际...

    android service反馈到主线程更新界面

    在Android应用开发中,Service是实现后台长时间运行任务的关键组件,它可以脱离用户界面(UI)独立执行。在“android service反馈到主线程更新界面”这个主题中,我们主要探讨的是如何利用Service和Handler机制,...

    Android Service实现断点下载

    在Android应用开发中,Service是实现后台长时间运行任务的关键组件,比如音乐播放、网络通信以及本例中的断点续传下载。"Android Service实现断点下载"是一个实用的功能,允许用户在任意时间点暂停下载任务,并在...

    Android Service 服务不被杀死的妙招

    在Android应用开发中,Service是不可或缺的一部分,它用于在后台执行长时间运行的操作,例如播放音乐、后台数据同步等。然而,Android系统为了优化资源管理,可能会在内存紧张时杀死正在运行的Service。本文将深入...

    Android Service和Activity基于串口蓝牙模块的双向通信

    Android Service和Activity基于串口蓝牙模块的双向通信 通过本帖,我们可以了解到如何使用 Android 的 Service 和 Activity 实现基于串口蓝牙模块的双向通信。这种通信方式可以用来控制家电、智能小车等设备。 ...

    Android Service Demo

    "Android Service Demo"是一个示例项目,它展示了如何在Android应用中使用Service,尤其是结合AIDL(Android Interface Definition Language)来实现进程间通信(IPC,Inter-Process Communication)。 首先,我们...

Global site tag (gtag.js) - Google Analytics