Android Service完全解析,关于服务你所需知道的一切(下)

Android Service完全解析,关于服务你所需知道的一切(下),第1张

概述在上篇文章中我们知道了,Service其实是运行在主线程里的,如果直接在Service中处理一些耗时的逻辑,就会导致程序ANR。 让我们来做个实验验证一下吧,修改上一篇文章中创建的ServiceTest项目,在MyService的onCreate()方法中让线程睡眠60秒,如下所示:publicclassMyServiceextendsSer

在上篇文章中我们知道了,Service其实是运行在主线程里的,如果直接在Service中处理一些耗时的逻辑,就会导致程序ANR。

 

让我们来做个实验验证一下吧,修改上一篇文章中创建的ServiceTest项目,在MyService的onCreate()方法中让线程睡眠60秒,如下所示:

public class MyService extends Service {     ......     @OverrIDe    public voID onCreate() {        super.onCreate();        Log.d(TAG, "onCreate() executed");        try {            Thread.sleep(60000);        } catch (InterruptedException e) {            e.printstacktrace();        }    }        ...... }

 

重新运行后,点击一下Start Service按钮或Bind Service按钮,程序就会阻塞住并无法进行任何其它 *** 作,过一段时间后就会d出ANR的提示框,如下图所示。

 

 

 

之前我们提到过,应该在Service中开启线程去执行耗时任务,这样就可以有效地避免ANR的出现。

 

那么本篇文章的主题是介绍远程Service的用法,如果将MyService转换成一个远程Service,还会不会有ANR的情况呢?让我们来动手尝试一下吧。

 

将一个普通的Service转换成远程Service其实非常简单,只需要在注册Service的时候将它的androID:process属性指定成:remote就可以了,代码如下所示:

<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"    package="com.example.servicetest"    androID:versionCode="1"    androID:versionname="1.0" >     ......        <service        androID:name="com.example.servicetest.MyService"        androID:process=":remote" >    </service> </manifest>

 

现在重新运行程序,并点击一下Start Service按钮,你会看到控制台立刻打印了onCreate() executed的信息,而且主界面并没有阻塞住,也不会出现ANR。大概过了一分钟后,又会看到onStartCommand() executed打印了出来。

 

为什么将MyService转换成远程Service后就不会导致程序ANR了呢?这是由于,使用了远程Service后,MyService已经在另外一个进程当中运行了,所以只会阻塞该进程中的主线程,并不会影响到当前的应用程序。

 

为了证实一下MyService现在确实已经运行在另外一个进程当中了,我们分别在MainActivity的onCreate()方法和MyService的onCreate()方法里加入一行日志,打印出各自所在的进程ID,如下所示:

Log.d("TAG", "process ID is " + Process.myPID());

 

再次重新运行程序,然后点击一下Start Service按钮,打印结果如下图所示:

 

 

 

可以看到,不仅仅是进程ID不同了,就连应用程序包名也不一样了,MyService中打印的那条日志,包名后面还跟上了:remote标识。

 

那既然远程Service这么好用,干脆以后我们把所有的Service都转换成远程Service吧,还省得再开启线程了。其实不然,远程Service非但不好用,甚至可以称得上是较为难用。一般情况下如果可以不使用远程Service,就尽量不要使用它。

 

下面就来看一下它的弊端吧,首先将MyService的onCreate()方法中让线程睡眠的代码去除掉,然后重新运行程序,并点击一下Bind Service按钮,你会发现程序崩溃了!为什么点击Start Service按钮程序就不会崩溃,而点击Bind Service按钮就会崩溃呢?这是由于在Bind Service按钮的点击事件里面我们会让MainActivity和MyService建立关联,但是目前MyService已经是一个远程Service了,Activity和Service运行在两个不同的进程当中,这时就不能再使用传统的建立关联的方式,程序也就崩溃了。

 

那么如何才能让Activity与一个远程Service建立关联呢?这就要使用AIDL来进行跨进程通信了(IPC)。

 

AIDL(AndroID Interface DeFinition Language)是AndroID接口定义语言的意思,它可以用于让某个Service与多个应用程序组件之间进行跨进程通信,从而可以实现多个应用程序共享同一个Service的功能。

 

下面我们就来一步步地看一下AIDL的用法到底是怎样的。首先需要新建一个AIDL文件,在这个文件中定义好Activity需要与Service进行通信的方法。新建MyAIDLService.aIDl文件,代码如下所示:

package com.example.servicetest;interface MyAIDLService {    int plus(int a, int b);    String toupperCase(String str);}

 

点击保存之后,gen目录下就会生成一个对应的Java文件,如下图所示:

 

 

 

然后修改MyService中的代码,在里面实现我们刚刚定义好的MyAIDLService接口,如下所示:

public class MyService extends Service {     ......     @OverrIDe    public IBinder onBind(Intent intent) {        return mBinder;    }     MyAIDLService.Stub mBinder = new Stub() {         @OverrIDe        public String toupperCase(String str) throws remoteexception {            if (str != null) {                return str.toupperCase();            }            return null;        }         @OverrIDe        public int plus(int a, int b) throws remoteexception {            return a + b;        }    }; }

 

这里先是对MyAIDLService.Stub进行了实现,重写里了toupperCase()和plus()这两个方法。这两个方法的作用分别是将一个字符串全部转换成大写格式,以及将两个传入的整数进行相加。然后在onBind()方法中将MyAIDLService.Stub的实现返回。这里为什么可以这样写呢?因为Stub其实就是Binder的子类,所以在onBind()方法中可以直接返回Stub的实现。

 

接下来修改MainActivity中的代码,如下所示:

public class MainActivity extends Activity implements OnClickListener {     private button startService;     private button stopService;     private button bindService;     private button unbindService;        private MyAIDLService myAIDLService;     private ServiceConnection connection = new ServiceConnection() {         @OverrIDe        public voID onServicedisconnected(Componentname name) {        }         @OverrIDe        public voID onServiceConnected(Componentname name, IBinder service) {            myAIDLService = MyAIDLService.Stub.asInterface(service);            try {                int result = myAIDLService.plus(3, 5);                String upperStr = myAIDLService.toupperCase("hello world");                Log.d("TAG", "result is " + result);                Log.d("TAG", "upperStr is " + upperStr);            } catch (remoteexception e) {                e.printstacktrace();            }        }    };     ...... }

 

我们只是修改了ServiceConnection中的代码。可以看到,这里首先使用了MyAIDLService.Stub.asInterface()方法将传入的IBinder对象传换成了MyAIDLService对象,接下来就可以调用在MyAIDLService.aIDl文件中定义的所有接口了。这里我们先是调用了plus()方法,并传入了3和5作为参数,然后又调用了toupperCase()方法,并传入hello world字符串作为参数,最后将调用方法的返回结果打印出来。

 

现在重新运行程序,并点击一下Bind Service按钮,可以看到打印日志如下所示:

 

 

 

由此可见,我们确实已经成功实现跨进程通信了,在一个进程中访问到了另外一个进程中的方法。

 

不过你也可以看出,目前的跨进程通信其实并没有什么实质上的作用,因为这只是在一个Activity里调用了同一个应用程序的Service里的方法。而跨进程通信的真正意义是为了让一个应用程序去访问另一个应用程序中的Service,以实现共享Service的功能。那么下面我们自然要学习一下,如何才能在其它的应用程序中调用到MyService里的方法。

 

在上一篇文章中我们已经知道,如果想要让Activity与Service之间建立关联,需要调用bindService()方法,并将Intent作为参数传递进去,在Intent里指定好要绑定的Service,示例代码如下:

Intent bindIntent = new Intent(this, MyService.class);bindService(bindIntent, connection, BIND_auto_CREATE);

 

这里在构建Intent的时候是使用MyService.class来指定要绑定哪一个Service的,但是在另一个应用程序中去绑定Service的时候并没有MyService这个类,这时就必须使用到隐式Intent了。现在修改AndroIDManifest.xml中的代码,给MyService加上一个action,如下所示:

 

<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"    package="com.example.servicetest"    androID:versionCode="1"    androID:versionname="1.0" >     ......     <service        androID:name="com.example.servicetest.MyService"        androID:process=":remote" >        <intent-filter>            <action androID:name="com.example.servicetest.MyAIDLService"/>        </intent-filter>    </service> </manifest>

 

这就说明,MyService可以响应带有com.example.servicetest.MyAIDLService这个action的Intent。

 

现在重新运行一下程序,这样就把远程Service端的工作全部完成了。

 

然后创建一个新的AndroID项目,起名为ClIEntTest,我们就尝试在这个程序中远程调用MyService中的方法。

 

ClIEntTest中的Activity如果想要和MyService建立关联其实也不难,首先需要将MyAIDLService.aIDl文件从ServiceTest项目中拷贝过来,注意要将原有的包路径一起拷贝过来,完成后项目的结构如下图所示:

 

 

然后打开或新建activity_main.xml,在布局文件中也加入一个Bind Service按钮:

<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    androID:orIEntation="vertical"     >    <button        androID:ID="@+ID/bind_service"       androID:layout_wIDth="match_parent"       androID:layout_height="wrap_content"       androID:text="Bind Service"       /> </linearLayout>

 

接下来打开或新建MainActivity,在其中加入和MyService建立关联的代码,如下所示:

public class MainActivity extends Activity {     private MyAIDLService myAIDLService;     private ServiceConnection connection = new ServiceConnection() {         @OverrIDe        public voID onServicedisconnected(Componentname name) {        }         @OverrIDe        public voID onServiceConnected(Componentname name, IBinder service) {            myAIDLService = MyAIDLService.Stub.asInterface(service);            try {                int result = myAIDLService.plus(50, 50);                String upperStr = myAIDLService.toupperCase("comes from ClIEntTest");                Log.d("TAG", "result is " + result);                Log.d("TAG", "upperStr is " + upperStr);            } catch (remoteexception e) {                e.printstacktrace();            }        }    };     @OverrIDe    protected voID onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentVIEw(R.layout.activity_main);        button bindService = (button) findVIEwByID(R.ID.bind_service);        bindService.setonClickListener(new OnClickListener() {            @OverrIDe            public voID onClick(VIEw v) {                Intent intent = new Intent("com.example.servicetest.MyAIDLService");                bindService(intent, connection, BIND_auto_CREATE);            }        });    } }

 

这部分代码大家一定会非常眼熟吧?没错,这和在ServiceTest的MainActivity中的代码几乎是完全相同的,只是在让Activity和Service建立关联的时候我们使用了隐式Intent,将Intent的action指定成了com.example.servicetest.MyAIDLService。

 

在当前Activity和MyService建立关联之后,我们仍然是调用了plus()和toupperCase()这两个方法,远程的MyService会对传入的参数进行处理并返回结果,然后将结果打印出来。

 

这样的话,ClIEntTest中的代码也就全部完成了,现在运行一下这个项目,然后点击Bind Service按钮,此时就会去和远程的MyService建立关联,观察LogCat中的打印信息如下所示:

 

 

不用我说,大家都已经看出,我们的跨进程通信功能已经完美实现了。

 

不过还有一点需要说明的是,由于这是在不同的进程之间传递数据,AndroID对这类数据的格式支持是非常有限的,基本上只能传递Java的基本数据类型、字符串、List或Map等。那么如果我想传递一个自定义的类该怎么办呢?这就必须要让这个类去实现Parcelable接口,并且要给这个类也定义一个同名的AIDL文件。这部分内容并不复杂,而且和Service关系不大,所以就不再详细进行讲解了,感兴趣的朋友可以自己去查阅一下相关的资料。

 

好了,结合上下两篇,这就是关于Service你所需知道的一切。

 

 

 

希望本文对你有所帮助~~如果对软件测试、接口测试、自动化测试、面试经验交流感兴趣可以加入我们。642830685,免费领取最新软件测试大厂面试资料和Python自动化、接口、框架搭建学习资料!技术大牛解惑答疑,同行一起交流。



总结

以上是内存溢出为你收集整理的Android Service完全解析,关于服务你所需知道的一切(下)全部内容,希望文章能够帮你解决Android Service完全解析,关于服务你所需知道的一切(下)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1057294.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存