Android学习笔记(3)-四大组件之Service的使用

今天写博客时间有点晚了,主要是因为下午在写Service使用Demo的时候遇到了一些问题,那么接下来就开始分析Service的使用和生命周期吧~

实际使用

我写了一个简单的demo,包含了Service的两种启动方式,我先贴出源码和运行截图.文件总共有ServiceActivity.java,MyService.java,activity_service.xml,style.xml四个文件,在日志的打印中我没有使用复杂的接口,直接使用了静态方法的方式打印了数据,这种方式仅仅只能在单个Activity的demo中使用,切记不要在实际开发中这样操作,不然你会非常容易地遇到空指针~
ServiceActivity.java

import android.app.ActivityManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TextView;

import com.txVideo.demo.service.MyService;
import java.util.List;

public class ServiceActivity extends AppCompatActivity implements View.OnClickListener {
    public static final String TAG = "ServiceActivity";
    private Button startBtn;
    private Button stopBtn;
    private Button bindBtn;
    private Button unbindBtn;
    private Button clearBtn;
    private static ScrollView logScrollView;
    private static TextView logTextView;
    private static StringBuffer logStringBuffer = new StringBuffer();
    private MyService myService = new MyService();
    private MyConnection conn = new MyConnection();
    private boolean isBinding ;
    public static Handler mHandler = new Handler(){
        @Override
        public void handleMessage(Message message){
            log();
        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_service);
        initView();
    }
    public void initView(){
        startBtn = findViewById(R.id.start_service_btn);
        stopBtn = findViewById(R.id.stop_service_btn);
        bindBtn = findViewById(R.id.bind_service_btn);
        unbindBtn = findViewById(R.id.unbind_service_btn);
        clearBtn = findViewById(R.id.service_clear_btn);
        logScrollView = findViewById(R.id.service_log_scroll);
        logTextView = findViewById(R.id.service_log);
        startBtn.setOnClickListener(this);
        stopBtn.setOnClickListener(this);
        bindBtn.setOnClickListener(this);
        unbindBtn.setOnClickListener(this);
        clearBtn.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()){
            case R.id.start_service_btn:
                //startService方式打开
                Intent myServiceIntent1 = new Intent(this,MyService.class);
                startService(myServiceIntent1);
                break;
            case R.id.stop_service_btn:
                //stopService方式关闭
                if(!isServiceRunning(this,MyService.class.getName())){
                    sendMessageForLog("服务未运行------");
                    break;
                }
                Intent myServiceIntent2 = new Intent(this,MyService.class);
                stopService(myServiceIntent2);
                break;
            case R.id.bind_service_btn:
                if( isBinding && isServiceRunning(this,MyService.class.getName())){
                    sendMessageForLog("服务已经绑定------");
                    break;
                }
                Intent bindService = new Intent(this,MyService.class);
                //通过绑定的方式开启service
                //使用bindService 开启反服务
                //参数 1. intent 包含要启动的service
                //2.   ServiceConnection接口 通过它可以接受服务开启或者停止的消息
                //3.开启服务时操作的选项 一般传入BIND_AUTO_CREATE自动创建service
                bindService(bindService, conn, BIND_AUTO_CREATE);//绑定存在自动创建
                break;
            case R.id.unbind_service_btn:
                //解绑
                if(isServiceRunning(this,MyService.class.getName()) && isBinding){
                    unbindService(conn);
                    isBinding = false ;
                    sendMessageForLog("服务已解绑------");
                    break;
                }
                if(!isServiceRunning(this,MyService.class.getName())){
                    sendMessageForLog("服务未运行------");
                    break;
                }
                if(!isBinding){
                    sendMessageForLog("服务运行但未绑定------");
                    break;
                }

                break;
            case R.id.service_clear_btn:
                sendMessageForLog("");
                break;
        }
    }

    public static void  log(){
        logTextView.setText(logStringBuffer.toString());
        logScrollView.post(new Runnable() {
            @Override
            public void run() {
                logScrollView.fullScroll(View.FOCUS_DOWN);
            }
        });
    }
    /**
     * 发送消息,在主线程里更新UI
     */
    public static void sendMessageForLog(String s){
        if("".equals(s)){
            logStringBuffer.delete(0,logStringBuffer.length());
        }else {
            logStringBuffer.append(s+"\n");
        }
        Message message = new Message();
        Bundle bundle = new Bundle();
        bundle.putString("data",logStringBuffer.toString());
        mHandler.sendMessage(message);
    }
    private class MyConnection implements ServiceConnection {

        @Override//当服务与Activity 连接时建立
        public void onServiceConnected(ComponentName name, IBinder service) {
            //只有当service onbind方法返回值不为null 调用
            sendMessageForLog("服务已经绑定------onServiceConnected()");
            isBinding = service.isBinderAlive();
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
            Log.e("TAG", "onServiceDisconnected");
            sendMessageForLog("服务已经断开绑定------onServiceConnected()");
        }

    }

    /**
     * 校验服务是否还存在
     */
    public static boolean isServiceRunning(Context context, String serviceName){
        // 校验服务是否还存在
        ActivityManager am = (ActivityManager) context
                .getSystemService(Context.ACTIVITY_SERVICE);
        List<ActivityManager.RunningServiceInfo> services = am.getRunningServices(100);
        for (ActivityManager.RunningServiceInfo info : services) {
            // 得到所有正在运行的服务的名称
            String name = info.service.getClassName();
            if (serviceName.equals(name)) {
                return true;
            }
        }
        return false;
    }

}

MyService.java

public class MyService extends Service {
    public static final String TAG = "MyService";
    private LocalBinder mBinder = new LocalBinder();
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        ServiceActivity.sendMessageForLog("服务已经绑定------onBind()");
        return mBinder;
    }
    @Nullable
    @Override
    public void unbindService(ServiceConnection serviceConnection){
        ServiceActivity.sendMessageForLog("服务已解除绑定------unbindService()");
        super.unbindService(serviceConnection);
    }
    @Override
    public void onCreate() {
        ServiceActivity.sendMessageForLog("服务已经创建------onCreate()");
        super.onCreate();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        ServiceActivity.sendMessageForLog("服务已经开启------onStartCommand()");
        ServiceActivity.sendMessageForLog("服务已经开启------flags:"+flags);
        ServiceActivity.sendMessageForLog("服务已经开启------startId:"+startId);
        return super.onStartCommand(intent, flags, startId);
    }
    @Override
    public void onDestroy() {
        ServiceActivity.sendMessageForLog("服务已经关闭------onDestroy()");
        super.onDestroy();
    }

    public class LocalBinder extends Binder{
        public MyService getservices(){
            return MyService.this;
        }
    }

布局文件activity_service.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".BroadcastActivity">
    <Button
        android:id="@+id/start_service_btn"
        style="@style/MyStyle"
        android:layout_height="wrap_content"
        android:text="startService"
        android:textAllCaps="false"/>
    <Button
        android:id="@+id/stop_service_btn"
        style="@style/MyStyle"
        android:layout_height="wrap_content"
        android:text="stopService"
        android:textAllCaps="false"/>
    <Button
        android:id="@+id/bind_service_btn"
        style="@style/MyStyle"
        android:layout_height="wrap_content"
        android:text="bindService"
        android:textAllCaps="false"/>
    <Button
        android:id="@+id/unbind_service_btn"
        style="@style/MyStyle"
        android:layout_height="wrap_content"
        android:text="unbindService"
        android:textAllCaps="false"/>
    <ScrollView
        android:id="@+id/service_log_scroll"
        style="@style/MyStyle"
        android:layout_height="0dp"
        android:layout_weight="1">
        <TextView
            android:id="@+id/service_log"
            android:paddingLeft="10dp"
            android:paddingTop="10dp"
            android:paddingRight="10dp"
            android:gravity="center_vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
    </ScrollView>
    <Button
        android:id="@+id/service_clear_btn"
        style="@style/MyStyle"
        android:layout_marginBottom="10dp"
        android:layout_height="wrap_content"
        android:text="清空日志"/>
</LinearLayout>

style.xml文件

<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="android:windowNoTitle">true</item>
</style>
<style name="MyStyle">
    <item name="android:layout_marginLeft">10dp</item>
    <item name="android:layout_marginTop">10dp</item>
    <item name="android:layout_marginRight">10dp</item>
    <item name="android:layout_width">match_parent</item>
</style>
</resources>

绑定情况的运行截图为:


Screenshot_2020-02-28-17-31-08-35.png

这个demo包含了两种方式以及组合使用的情况,有兴趣的小伙伴可以copy使用查看生命周期的变化,使用的过程看一下demo程序大家应该就有所了解了,先简单梳理一下正常使用状态下的Service生命周期:

  • startService方式启动及关闭
    onCreate() - onStartCommand() - onDestroy()
  • 多次startService打开后关闭
    onCreate() - onStartCommand() - onStartCommand() - onDestroy()
  • bindService方式
    onCreate() - onBind() - unBind() - onDestroy()
  • 组合使用
    onCreate() - onStartCommand() - onBind() - unBind() - onDestroy()
    总结几个使用的注意点
  • Service在运行,不一定被绑定,但被绑定,一定在运行。
  • Service多次以startService方式启动时,不会重新调用onCreate()方法,只会走onStartCommand()且对应的startId会依次增加1.
  • Service在停止或者解绑时要确定这个Service在运行或者已经被绑定了,否则会出错。
  • Service在使用startService启动后,再调用bindService方法,这时如果不先调用unbindService()方法的话,直接调用stopService方法是无法触发Service的onDestroy方法的。
    今天的Service使用就总结到这里啦,觉得有帮助记得点个赞~
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351