博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android中Services之异步IntentService
阅读量:5897 次
发布时间:2019-06-19

本文共 2210 字,大约阅读时间需要 7 分钟。

IntentService:异步处理服务,新开一个线程:handlerThread在线程中发消息,然后接受处理完成后,会清理线程,并且关掉服务。

IntentService有以下特点:

(1)  它创建了一个独立的工作线程来处理所有的通过onStartCommand()传递给服务的intents。

(2)  创建了一个工作队列,来逐个发送intent给onHandleIntent()。

(3)  不需要主动调用stopSelft()来结束服务。因为,在所有的intent被处理完后,系统会自动关闭服务。

(4)  默认实现的onBind()返回null

(5)  默认实现的onStartCommand()的目的是将intent插入到工作队列中

 继承IntentService的类至少要实现两个函数:构造函数和onHandleIntent()函数。要覆盖IntentService的其它函数时,注意要通过super调用父类的对应的函数。

界面设置两按钮:

    

声明IntentServiceSub继承IntentService

public class IntentServiceSub extends IntentService {    private static final String TAG = "IntentServiceSub";    public IntentServiceSub() {        super("IntentServiceSub");        Log.i(TAG, "=>IntentServiceSub");    }    /* (non-Javadoc)     * @see android.app.IntentService#onCreate()     */    @Override    public void onCreate() {        Log.i(TAG, "=>onCreate");        super.onCreate();    }    /* (non-Javadoc)     * @see android.app.IntentService#onDestroy()     */    @Override    public void onDestroy() {        Log.i(TAG, "=>onDestroy");        super.onDestroy();    }        @Override    protected void onHandleIntent(Intent arg0) {        Log.i(TAG, "IntentService 线程:"+Thread.currentThread.getId());         Thread.sleep(2000); }

页面按钮事件

btnStartIntentService = (Button) this.findViewById(R.id.btnStartIntentService);        btnStopIntentService = (Button) this.findViewById(R.id.btnStopIntentService);private OnClickListener listener = new OnClickListener() {        @Override        public void onClick(View v) {                        case R.id.btnStartIntentService:                Log.i(TAG, "主线程ID:"+Thread.currentThread.getId());                if (mServiceIntent == null)                    mServiceIntent = new Intent(AndroidServiceActivity.this,IntentServiceSub.class);                startService(mServiceIntent);                break;            case R.id.btnStopIntentService:                Log.i(TAG, "btnStopIntentService");                if (mServiceIntent != null) {                    stopService(mServiceIntent);                    mServiceIntent = null;                }                break;            }        }    };

 本文转自欢醉博客园博客,原文链接http://www.cnblogs.com/zhangs1986/p/3602154.html如需转载请自行联系原作者

欢醉

你可能感兴趣的文章
php 读取webservice接口
查看>>
史上最全web.xml配置文件元素详解
查看>>
Atitit WebDriver技术规范原理与概念
查看>>
java对email邮箱的真实、有效性验证
查看>>
吃瓜群众的三言两语,想听的就进来看看吧!
查看>>
检测pycaffe安装好没
查看>>
假如想要建设一个能承受500万PV/每天的网站,服务器每秒要处理多少个请求才能应对?...
查看>>
Linux下用netstat查看网络状态、端口状态
查看>>
Linux 文件与目录管理
查看>>
JSON.parse()和JSON.stringify()
查看>>
打开居中显示的窗口
查看>>
.Net 5分钟搞定网页实时监控
查看>>
[转]RabbitMQ系列(一):Windows下RabbitMQ安装及入门
查看>>
OEL的下载
查看>>
U盘强制拔出数据丢失怎么办
查看>>
php 7.2 安装 mcrypt 扩展
查看>>
Linux上安装使用boost入门指导
查看>>
16种oracle查询日期语句
查看>>
myeclipse添加spket插件
查看>>
Silverlight WCF RIA服务(二十二)Silverlight 客户端 3
查看>>