android 的service和activity是执行在UI主线程的。在android线程中,仅仅有主线程即UI线程有自己的默认的消息队列。子线程须要创建自己的消息队列。并把消息发给队列,并循环起来,发给handler处理。 1、Looper.prepare();给子线程创建消息队列。 2、Loo ...
分类:
移动开发 时间:
2017-05-25 20:37:36
阅读次数:
211
packagecom.service.service;
importcom.example.service.R;
importandroid.app.Activity;
importandroid.content.ComponentName;
importandroid.content.Context;
importandroid.content.Intent;
importandroid.content.ServiceConnection;
importandroid.os.Bundle;
impo..
分类:
移动开发 时间:
2016-12-21 03:17:52
阅读次数:
190
packagecom.android.service;importandroid.app.IntentService;importandroid.content.Intent;publicclassHelloIntentServiceextendsIntentService{publicHelloIntentService(){super("HelloIntentService");//TODOAuto-generatedconstructorstub}@OverrideprotectedvoidonHand..
分类:
移动开发 时间:
2016-10-12 23:33:04
阅读次数:
274
Android的Service学习,大致分为两类:started服务(包含IntentService),bound服务。...
分类:
其他好文 时间:
2016-05-18 18:18:34
阅读次数:
816
private boolean isServiceRunning() { ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE); for (RunningServiceInfo ser...
分类:
移动开发 时间:
2015-09-05 13:42:43
阅读次数:
180
Android L[Android5.X.X] 版本通过Intent隐式启动service时将会报出以下错误:
AndroidRuntime( 792): java.lang.IllegalArgumentException: Service Intent must be explicit...
分类:
移动开发 时间:
2015-07-04 12:41:51
阅读次数:
190
原文网址:http://blog.csdn.net/shenzhonglaoxu/article/details/42675287今天在学习android的Service组件的时候,在AndroidMainfest.xml中定义了[html]view plaincopy 然后在activity...
分类:
其他好文 时间:
2015-05-26 18:33:01
阅读次数:
724
Android的Service若使用非绑定式的创建,则创建后将无法再与它取得联系,即无法传递消息参数等;所以如果希望创建后仍然与其存在联系,那么可以参考我的前几篇博客《Android:Service的绑定和解绑定,Service与Activity通信》,其中讲到了Service的绑定和与Activity通信的相关内容(如题目o(^▽^)o)。
Service的非绑定式的创建非常的简单,和启动Act……...
分类:
移动开发 时间:
2015-03-15 00:51:09
阅读次数:
234
编写不需和Activity交互的本地服务示例 本地服务编写比较简单。首先,要创建一个Service类,该类继承android的Service类。这里写了一个计数服务的类,每秒钟为计数器 加一。在服务类的内部,还创建了一个线程,用...
分类:
移动开发 时间:
2014-11-30 01:02:48
阅读次数:
250