Android 四大组件之 Service(二)
这里主要介绍Service组件的使用。
1、定义一个继承Service的子类
如下:
package com.service;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder; public class defaultService extends Service {
int mStartMode; // indicates how to behave if the service is killed
IBinder mBinder; // interface for clients that bind
boolean mAllowRebind; // indicates whether onRebind should be used @Override
public void onCreate() {
// The service is being created
} @Override
public int onStartCommand(Intent intent, int flags, int startId) {
// The service is starting, due to a call to startService()
return mStartMode;
} @Override
public IBinder onBind(Intent intent) {
// A client is binding to the service with bindService()
return mBinder;
} @Override
public boolean onUnbind(Intent intent) {
// All clients have unbound with unbindService()
return mAllowRebind;
} @Override
public void onRebind(Intent intent) {
// A client is binding to the service with bindService(),
// after onUnbind() has already been called
} @Override
public void onDestroy() {
// The service is no longer used and is being destroyed
}
}
2、在AndroidManifest.xml中使用<service>标签配置该Service
<service android:name="com.service.defaultService">
<intent-filter>
<action android:name="com.service.dService" />
</intent-filter>
</service>
注意:第一个name是service的位置,包括完整的包名和service名。如果包名就是你定义的程序包名,也就是和gen目录下那个包的名字一样的话,直接".service名"就可以了。第二个name是调用service时intent.setAction();中的参数,这个可以随便。
3、Service中定义了如下的生命周期方法:
[1] IBinder onBind(Intent intent):该方法是Service子类必须实现的方法,该方法返回一个IBinder对象,应用程序可通过该对象与Service组件通信 ;
[2] void onCreate():当Service组件第一次被创建后立即回调该方法;
[3]void onDestroy():当Service关闭之前回调该方法;
[4]void onStartCommand(Intent intent,int flags,int startId):该方法的早期版本是onStart(Intent intent,int startId),每次客户端调用startService()方法启动Service时都会回调该方法;
[5]boolean onUnbind(Intent intent):当该Service上绑定的所有客户端断开连接时将会调用该方法
当其它组件通过Context.startService()方法启动Service时,系统会创建一个Service对象,并顺序调用onCreate()方法和onStartCommand()方法,在调用Context.stopService()或stopSelf()之前,Service一直处于运行的状态。如果多次调用startService()方法,系统只会多次调用onStartCommand()方法,不会重复调用onCreate()方法。无论调用了多少次startService()方法,只需调用一次stopService()方法就可以停止该Service。Service对象在销毁之前,onDestroy()方法会被调用,因此与资源释放相关的工作应该在此方法中完成。
3、Service的启动停止
[1]方式一:
当程序通过startService()方法和stopService()方法启动、停止Service()时,Service与访问者之间基本上不存在太多的关联,因此Service和访问者之间也无法进行通信和数据交换。
[2]方式二:
通过bindService()与unbindService()方法启动、停止Service()。
4、方式二详解
bindService(Intent serivce,ServiceConnection connection,int flags)方法启动:
[1]第一个参数通过Intent指定要启动的Service;
[2]第二个参数用于监听访问者与Service之间的连接情况;
该ServiceConnection对象用于监听访问者与Service之间的连接情况,当访问者与Service之间连接成功时,将会回调ServiceConnection对象的onServiceConnected(ComponentName name,IBinder service)方法;当Service所在的进程异常终止或由于其它原因终止时,导致该Service与访问者之间断开连接时,将会回调ServiceConnection对象的onServiceDisconnected(ComponentName name)方法(当主动调用unbindService()方法断开与Service的连接时,不会调用该回调方法)。
注意到ServiceConnection对象的onServiceConnected(ComponentName name,IBinder service)方法中有一个IBinder对象,该对象即实现与被绑定Service之间的通信。
[3]第三个参数指定绑定时是否自动创建Service(如果Service还未创建)。该参数可指定为0(不自动创建)或BIND_AUTO_CREATE(自动创建)。
5、开发Service类时必须提供IBinder onBind(Intent intent)方法
在绑定本地Service的情况下,onBind(Intent intent)方法所返回的IBinder对象将会传给ServiceConnection对象里的onServiceConnected(ComponentName name,IBinder service)方法的service参数,以实现与Service进行通信。
实际上开发时常会采用继承Binder(IBinder的实现类)的方式实现自己的IBinder对象。
package com.service;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder; public class BindService extends Service
{
private int count; //标识Service的运行状态
private boolean quit; //标志Service是否被关闭 //定义onBind()方法所返回的对象
private defaultBinder binder = new defaultBinder();
public class defaultBinder extends Binder
{
public int getCount()
{
//获取Service的运行状态:count
return count;
}
}
@Override
public IBinder onBind(Intent intent)
{
System.out.println("Service is Binded!");
return binder;
} //Service被创建时回调该方法
@Override
public void onCreate()
{
super.onCreate();
System.out.println("Serivce is Created!");
//启动一条新线程,动态改变count值
new Thread()
{
@Override
public void run()
{
while(!quit)
{
try{
Thread.sleep(1000);
}
catch (InterruptedException e){
e.printStackTrace();
}
count++;
}
}
}.start();
} //Service被关闭之前回调该方法
@Override
public void onDestroy()
{
super.onDestroy();
this.quit=true;
System.out.println("Service is Destroyed!");
} //Service断开连接时回调该方法
@Override
public boolean onUnbind(Intent intent)
{
System.out.println("Service is Unbinder");
return true;
}
}
6、接下来在一个Activity中绑定该Service,并在Activity中通过defaultBinder对象访问Service的内部状态。
[1]布局文件如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" > <Button
android:id="@+id/bind"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="绑定Service" />
<Button
android:id="@+id/unbind"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="解除绑定" />
<Button
android:id="@+id/status"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="获取Service状态" />
</LinearLayout>
[2]Activity如下:
package com.myandroid; import com.service.BindService; import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.Toast; public class ServiceActivity extends Activity
{
private Button bind,unbind,status;
BindService.defaultBinder binder; //保持所启动的Service的IBinder对象 //定义一个ServiceConnection对象
private ServiceConnection conn=new ServiceConnection()
{
@Override
public void onServiceConnected(ComponentName name, IBinder service)
{
System.out.println("Service connected!");
//获取Service的onBind()方法所返回的MyBinder对象
binder=(BindService.defaultBinder) service;
} @Override
public void onServiceDisconnected(ComponentName name)
{
System.out.println("Service disconnected!");
} };
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.service);
//获取界面按钮
bind=(Button)findViewById(R.id.bind);
unbind=(Button)findViewById(R.id.unbind);
status=(Button)findViewById(R.id.status);
//创建启动Service的Intent
final Intent intent=new Intent(); //第一个参数为context,第二个参数为类名(需指定包名)
intent.setClassName(this, "com.service.BindService");
bind.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
//绑定指定Service
bindService(intent,conn,BIND_AUTO_CREATE);
}
});
unbind.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
//解除绑定Service
unbindService(conn);
}
});
status.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
//获取Service状态信息
Toast.makeText(ServiceActivity.this,"Service的count值为:"+binder.getCount(),Toast.LENGTH_LONG).show();
}
});
}
}
Android 四大组件之 Service(二)的更多相关文章
- 【Android开发日记】之入门篇(五)——Android四大组件之Service
这几天忙着驾校考试,连电脑都碰不到了,今天总算告一段落了~~Service作为Android的服务组件,默默地在后台为整个程序服务,辅助应用与系统中的其他组件或系统服务进行沟通.它跟Activity的 ...
- Android四大组件之Service
Android四大组件之Service Android支持服务的概念,服务是在后台运行的组件,没有用户界面,Android服务可用有与活动独立的生命周期.Android支持两种类型的服务: 本地服务: ...
- Android四大组件之一Service介绍-android学习之旅(十二)
基本概念: service是android四大组件之一,运行在后台执行耗时操作,并不提供用户界面.其他组件如acticity可以通过startService启动该组件,也可以通过bindService ...
- Android成长日记-Android四大组件之Service组件的学习
1.什么是Service? Service是Android四大组件中与Activity最相似的组件,它们都代表可执行的程序,Service与Activity的区别在于:Service一直在后台运行,它 ...
- Android 四大组件之service与Broadcast
Android 四大组件之一:service: Service有五个生命周期:onCreat,onStartCommand, onBind,onUnbind, onDestroy 主要有绑定和非绑定两 ...
- Android四大组件之一 -- Service详解
相信大多数朋友对Service这个名词都不会陌生,没错,一个老练的Android程序员如果连Service都没听说过的话,那确实也太逊了.Service作为Android四大组件之一,在每一个应用程序 ...
- Android四大组件:Service
前言 Service作为Android四大组件之一,应用非常广泛 本文将介绍对Service进行全面介绍(基础认识.生命周期.使用和应用场景) 目录 目录 1. 基础知识 定义:服务,属于Androi ...
- Android四大组件之Service浅见
Service 是Android四大组件之一,可以在不显示界面的情况下在后台运行.还有一个作用是通过AIDL来实现进程间通信. Service的启动方式 Service的启动方式有两种,startSe ...
- Android 四大组件之Service
---恢复内容开始--- 1,Service的生命周期
- 谈Android四大组件之Service篇
Service简介 Service是Android系统中的四大组件之一,它是一种长生命周期的,没有可视化界面,运行于后台的一种服务程序.Service必须在AndroidManifest.xml中声明 ...
随机推荐
- Java Threads 多线程10分钟参考手册
1 同步 如何同步多个线程对共享资源的访问是多线程编程中最基本的问题之一.当多个线程并发访问共享数据时会出现数据处于计算中间状态或者不一致的问题,从而影响到程序的正确运行.我们通常把这 ...
- js中什么是对象,对象的概念是什么?
我们一直在用对象 可是你真的理解对象吗,js中有一个说法是一切皆对象,其实这里说的应该是 一切皆可看作对象 对象就是可以拥有属性和方法的一个集合 士兵就是一个对象,它拥有身高体重的属性,保家卫国,吃饭 ...
- javascript中Date对象复习
js的Date对象不怎么经常用,所以忘得差不多,复习一下 1.声明一个Date对象,默认本地当前时间 var date = new Date();//Fri Apr 28 2017 14:26:19 ...
- PCI DSS合规建设ASV扫描介绍
最近查一些Nessus.Nexpose漏洞扫描工具相关资料,工具介绍都会提到一些审计功能,其中最常见的就是PCI DSS合规性审计.从网上找到一篇介绍较详尽的文章,与大家分享. 原文摘自:http:/ ...
- Spring Boot项目的Logback配置文件使用yaml格式
1.普通的Spring项目使用logback默认用properties文件做为配置变量. 2.如果非要用yaml文件,那么可以转成Spring Boot项目,天生无缝结合 3.没办法,如果项目配置文件 ...
- [JAVA] JAVA 类路径
Java 类路径 类路径是所有包含类文件的路径的集合. 类路径中的目录和归档文件是搜寻类的起始点. 虚拟机搜寻类 搜寻jre/lib和jre/lib/ext目录中归档文件中所存放的系统类文件 搜寻再从 ...
- POJ 1330 Nearest Common Ancestors (LCA,倍增算法,在线算法)
/* *********************************************** Author :kuangbin Created Time :2013-9-5 9:45:17 F ...
- IT程序猿们,我该做什么选择呢
这个时刻,我想我遇到人生小拐点了,程序猿到了30岁,到达了一个分界线了,现在的我该何去何从呢? 先谈下简单的情况吧: 来这个公司2年了,之前因为身体的原因,不想那么累,于是选择了一份维护的工作,就来了 ...
- VS中运行HTTP 无法注册URL
参考资料 http://www.java123.net/detail/view-449670.html http://www.cnblogs.com/jiewei915/archive/2010/06 ...
- 配置Tomcat成为系统服务
国内私募机构九鼎控股打造APP,来就送 20元现金领取地址:http://jdb.jiudingcapital.com/phone.html内部邀请码:C8E245J (不写邀请码,没有现金送)国内私 ...