安卓线程相关 HandlerThread Handler Thread Looper Message Runnable

本文由PurpleSword(jzj1993)原创,转载请注明
原文网址 http://blog.csdn.net/jzj1993

安卓主线程(UI线程)是线程不安全的:对UI控件的
操作都应在主线程中完成;UI线程不应执行耗时操作,以免程序不响应(即ANR异常)


实现新线程的常用方法(注意要调用start方法启动新线程而不是run方法):

一、定义类,实现Runnable接口

    class MyRunnable implements Runnable {
        /**
         * 实现接口的run方法
         */
        @Override
        public void run() {
            // run方法的中程序体将在新线程中执行
        }
    }
    new Thread(new MyRunnable()).start();


二、简洁写法

        new Thread(new Runnable() {
            @Override
            public void run() {
                // 新线程操作
            }
        }).start();


三、定义类,继承Thread(不推荐):

    class MyThread extends Thread {
        /**
         * 覆写run方法
         */
        @Override
        public void run() {
            // 新线程操作
        }
    }
    new MyThread().start();


Thread和Runnable关系

    public class Thread extends Object implements Runnable {
    }


创建UI线程/主线程的Handler

一、(推荐写法,用于不处理消息,只是接收Runnable的情况下)

    // 无参数实例化时,会创建当前正在运行线程(即主线程)的Handler
    Handler handler = new Handler();

如果handler需要处理消息,按照以下写法将会产生警告This Handler class should be static or leaks might occur。此时可使用方法二)

    Handler handler = new Handler() {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
            }
        }
    };

二、(缺点在于需要定义一个新的类,写起来比较麻烦)

    // 无参数实例化时,会创建当前正在运行线程(即主线程)的Handler
    private Handler handler = new MyHandler() {
        // 处理其他线程发送的消息
        @Override
        public void handleMessage(Message msg) {
            Log.d("msg""msg what = " + msg.what);
            switch (msg.what) {
            }
        }
    };

    protected static class MyHandler extends Handler {
    }

三、(推荐写法,可用于接收Runnable和处理消息的情况下)

    boolean handleMessage(Message msg) {
        switch (msg.what) {
        }
        return true;
    }

    private final Handler mainHandler = new Handler(Looper.getMainLooper(),
            new Handler.Callback() {
                @Override
                public boolean handleMessage(Message msg) {
                    return ActivityMain.this.handleMessage(msg);
                }
            });

在UI线程中执行程序

        handler.post(new Runnable(){
            @Override
            public void run() {
                // 操作UI控件等...
            }
        });


创建新线程的Handler

    private HandlerThread handlerThread;
    private Handler handler;

    this.handlerThread = new HandlerThread(getClass().getSimpleName());
    this.handlerThread.start();
    this.handler = new Handler(this.handlerThread.getLooper(),
            new Handler.Callback() {
                public boolean handleMessage(Message msg) {
                    return NewThread.this.handleMessage(msg);
                }
            });

    /**
     * 处理消息
     * 
     * @param msg
     * @return
     */
    private boolean handleMessage(Message msg) {
        switch (msg.what) {
        }
        return true;
    }

通过Message进行线程间通信:在任意线程中向其他线程Handler发送消息

    /**
     * 向线程Handler发送消息
     * 
     * @param id
     * @param o
     */
    protected void sendMsg(int id, Object o) {
        if (handler != null) {
            Message msg = Message.obtain();
            msg.obj = o;
            msg.what = id;
            handler.sendMessage(msg);
        }
    }

    /**
     * 向线程Handler发送消息
     * 
     * @param what
     */
    protected void sendMsg(int what) {
        if (handler != null) {
            handler.sendEmptyMessage(what);
        }
    }


    handler.sendMessageDelayed(msgmilliseconds);

    Message.obtain(handlerwhatobj).sendToTarget();

近期自己搭建了一个网站,以后我的博客会转移到个人网站,欢迎大家关注~ 网址是http://purplesword.info



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/242151.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

用户细分_基于购买历史的用户细分

用户细分介绍 (Introduction) The goal of this analysis was to identify different user groups based on the deals they have availed, using a discount app, in order to re-target them with offers similar to ones they have availed in the past.该分析的目的是使用折…

一个字节的网络漫游故事独白

大家好,给大家介绍一下,我是一个字节。相比于你们人类据说即将达到的百岁人生的寿命,我的一生简直不直一提(我只能存活零点几个毫秒)。也许只有那些码农才会了解我,而且也只有一部分码农。那些整天做业务的…

swap最大值和平均值_SWAP:Softmax加权平均池

swap最大值和平均值Blake Elias is a Researcher at the New England Complex Systems Institute.Shawn Jain is an AI Resident at Microsoft Research.布莱克埃里亚斯 ( Blake Elias) 是 新英格兰复杂系统研究所的研究员。 Shawn Jain 是 Microsoft Research 的 AI驻地 。 …

Activity和Service通信 使用BroadcastReceiver

本文由PurpleSword(jzj1993)原创,转载请注明原文网址 http://blog.csdn.net/jzj1993Activity中编写/*** 广播接收器*/public class MsgReceiver extends BroadcastReceiver {Overridepublic void onReceive(Context context, Intent intent) {Log.v("", &…

该酷的酷该飒的飒,穿出自己的潮流前线

精选匈牙利白鸭绒填充,柔软蓬松 舒适感很强,回弹性好 没有什么异味很干净安全 宝贝穿上去保暖又舒适 树脂拉链+金属按扣,松紧帽檐+袖口 下摆还做了可调节抽绳,细节满满防风保暖很nice 短款设计相较于…

pytorch卷积可视化_使用Pytorch可视化卷积神经网络

pytorch卷积可视化Filter and Feature map Image by the author筛选和特征图作者提供的图像 When dealing with image’s and image data, CNN are the go-to architectures. Convolutional neural networks have proved to provide many state-of-the-art solutions in deep l…

Golang之轻松化解defer的温柔陷阱

defer是Go语言提供的一种用于注册延迟调用的机制:让函数或语句可以在当前函数执行完毕后(包括通过return正常结束或者panic导致的异常结束)执行。深受Go开发者的欢迎,但一不小心就会掉进它的温柔陷阱,只有深入理解它的…

安卓Selector

本文由PurpleSword(jzj1993)原创,转载请注明原文网址 http://blog.csdn.net/jzj1993安卓的按钮复选框等,在点击、选中等不同状态时,显示的图片不同。通常可以使用Selector进行定义(如res/drawable/button_selector.xml&#xff09…

u-net语义分割_使用U-Net的语义分割

u-net语义分割Picture By Martei Macru On Unsplash图片由Martei Macru On Unsplash拍摄 Semantic segmentation is a computer vision problem where we try to assign a class to each pixel . Unlike the classic image classification task where only one class value is …

我国身家超过亿元的有多少人?

目前我国身家达到亿元以上的人数,从公开数据来看大概有13万人,但如果把那些统计不到的隐形亿万富翁计算在内,我认为至少有20万以上。公开资料显示目前我国亿万富翁人数达到133000人根据胡润2018财富报告显示,目前我国(…

地理空间数据

摘要 (Summary) In this article, using Data Science and Python, I will show how different Clustering algorithms can be applied to Geospatial data in order to solve a Retail Rationalization business case.在本文中,我将使用数据科学和Python演示如何将…

安卓PopupWindow

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993定义弹窗动画res/anim/scale_in.xml<?xml version"1.0" encoding"utf-8"?><set xmlns:android"http://schemas.android.com/apk/res/android&…

嵌入式系统分类及其应用场景_词嵌入及其应用简介

嵌入式系统分类及其应用场景Before I give you an introduction on Word Embeddings, take a look at the following examples and ask yourself what is common between them:在向您介绍Word Embeddings之前&#xff0c;请看一下以下示例并问问自己它们之间的共同点是什么&…

山东男子5个月刷信用卡1800次,被银行处理后他选择29次取款100元

虽然我国实行的是存款自愿&#xff0c;取款自由的储蓄政策&#xff0c;客户想怎么取款&#xff0c;在什么时候取&#xff0c;取多少钱&#xff0c;完全是客户的权利&#xff0c;只要客户的账户上有钱&#xff0c;哪怕他每次取一毛钱取个100次都是客户的权利。但是明明可以一次性…

安卓传感器 Sensor

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj19931、获取系统服务private SensorManager sensorManager;sensorManager (SensorManager) getSystemService(SENSOR_SERVICE);2、检测是否有传感器private boolean checkSensor() {if …

深发银行为什么要更名为平安银行?

深圳发展银行之所以更名为平安银行&#xff0c;最直接的原因是平安银行收购了深圳发展银行&#xff0c;然后又以平安集团作为主体&#xff0c;以深圳发展银行的名义收购了平安银行&#xff0c;最后两个人合并之后统一命名为平安银行。深圳发展银行更名为平安银行&#xff0c;大…

高斯过程分类和高斯过程回归_高斯过程回归建模入门

高斯过程分类和高斯过程回归Gaussian processing (GP) is quite a useful technique that enables a non-parametric Bayesian approach to modeling. It has wide applicability in areas such as regression, classification, optimization, etc. The goal of this article i…

假如购买的期房不小心烂尾了,那银行贷款是否可以不还了?

如今房价一路高升&#xff0c;再加上开发商融资难度越来越大&#xff0c;现在很多人都开始打期房的主意。期房不论是对开发商还是对购房者来说都是双赢的&#xff0c;开发商可以以较低的融资成本维持楼盘的开发&#xff0c;提高财务杠杆&#xff0c;而购房者可以较低的价格买房…

SQLite基本语法

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993--创建表CREATE TABLE IF NOT EXISTS table1(id INTEGER PRIMARY KEY, name text NOT NULL, age INTEGER);--删除表DROP TABLE IF EXISTS table1;--增INSERT INTO table1(id,name) …