码迷,mamicode.com
首页 > 移动开发 > 详细

Android 更新UI的两种方法

时间:2017-06-20 13:42:50      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:方法   .post   nbsp   hand   run   ble   handle   public   thread   

一、使用Handler的方法

  例:首先要public static Handler mainThreadHandler = new Handler();

  然后就可以在需要的地方使用下面接口

        

mainThreadHandler.post(new Runnable() {
public void run() {
//具体逻辑

}
});

二、使用runOnUiThread()的方法

   直接在使用的地方调用一下接口

    // activity是Activity的对象

activity.runOnUiThread(new Runnable() {
public void run() {
//正常逻辑

}
});

Android 更新UI的两种方法

标签:方法   .post   nbsp   hand   run   ble   handle   public   thread   

原文地址:http://www.cnblogs.com/hippos/p/7053629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!