Android服务——Service

服务通常情况下有两种状态:

Started:当Android的应用程序组件,如Activity通过startSercive()启动了服务,则服务状态为Started。一旦启动,服务可以在后台无限期运行,即使启动它的组件已经被销毁

Bound:当Android的应用程序组件通过bindService()绑定了服务,则服务状态为Bound。Bound状态的服务提供了一个客户服务器接口来允许组件与服务器进行交互,如发送请求,获取结果,甚至通过IPC来进行跨进程通信。

 

要创建服务,我们需要创建一个继承自Service基类或者它的已知子类的Java类。

Service基类定义了不同的回调方法和多数重要方法:

onStartCommand():其他组件(如Activity)通过调用startService()来请求启动服务时,系统调用该方法。如果你实现该方法,你有责任在工作完成时通过stopSelf()或者stopService()方法来停止服务。

onBind():当其他组件想要通过bindService()来绑定服务时,系统调用该方法。如果你实现该方法,你需要返回IBinder对象来提供一个接口,以便客户来与服务通信。你必须实现该方法,如果你不允许绑定,则直接返回null。

onUnbind():当客户中断所有服务发布的特殊接口时,系统调用该方法。

onRebind():当新的客户端与服务连接,且此前它已经通过onUnbind(Intent)通知断开连接时,系统调用该方法。

onCreate():当服务通过onStartCommand()和onBind()被第一次创建的时候,系统调用该方法。该调用要求执行一次性安装。

onDestroy():当服务不再有用或者被销毁时,系统调用该方法。你的服务需要实现该方法来清理任何资源,如线程,已注册的监听器,接收器等。

 

下面的主服务演示了每个方法的生命周期:

public class ShowService extends Service{
    //标识服务如果被杀死之后的行为
    int mStartMode;
    
    //绑定的客户端接口
    IBinder mBinder;
    
    //标识是否可以使用onRebind
    boolean mAllowRebind;
    
    //当服务被创建时调用
    public void onCreate(){
        
    }
    
    //调用startService()启动服务时回调
    public int onStartCommand(Intent intent, int flags, int startId){
        return mStartMode;
    }
    
    //通过bindService()绑定到服务的客户端
    public IBinder onBind(Intent intent){
        return mBinder;
    }
    
    //通过unbindService()解除所有客户端绑定时调用
    public boolean onUnbind(Intent intent){
        return mAllowRebind;
    }
    
    //通过bindService()再次将客户端绑定到服务时调用
    public void onRebind(){
     
    }
    
    //服务不再有用且将要被销毁时调用
    public void onDestroy(){
        
    }
}

创建自己的Service的流程:

Step1:修改res/layout/activity_main.xml文件中的默认布局,在线性布局中包含两个按钮。

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
    
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Android 服务实例"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:textSize="30dp" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="www.runoob.com"
        android:textColor="#ff87ff09"
        android:textSize="30dp"
        android:layout_above="@+id/imageButton"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="40dp" />

    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageButton"
        android:src="@drawable/ic_launcher"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/button2"
        android:text="启动服务"
        android:onClick="startService"
        android:layout_below="@+id/imageButton"
        android:layout_centerHorizontal="true" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="停止服务"
        android:id="@+id/button"
        android:onClick="stopService"
        android:layout_below="@+id/button2"
        android:layout_alignLeft="@+id/button2"
        android:layout_alignStart="@+id/button2"
        android:layout_alignRight="@+id/button2"
        android:layout_alignEnd="@+id/button2" />

</RelativeLayout>

Step2:在包下创建新的Java文件MyService.java,该文件用来实现Android服务相关的方法

public class MyService extends Service{
    
    public IBinder onBind(Intent arg0){
        return null;
    }
    
    public int onStartCommand(Intent intent, int flags, int startId){
        //一直运行至服务器停止
        Toast.makeText(this, "服务器已启动", Toast.LENGTH_LONG).show();
        return START_STICKY;
    }
    
    public void onDestroy(){
        super.onDestroy();
        Toast.makeText(this, "服务器已停止", Toast.LENGTH_LONG).show();
    }
}

Step3:修改主活动文件MainActivity.java来添加startService()和stopService()方法

//启动服务
public void startService(View view){
    startService(new Intent(getBaseContext(), MyService.class));
}

//停止服务
public void stopService(View view){
    stopService(new Intent(getBaseContext(), MyService.class));
}

Step4:在AndroidManifest.xml文件中使用<service.../>标签来定义服务。应用程序可以有一个或多个服务,没有任何限制。

<service android:name=".MyService" />

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

SmiledrinkCat

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值