摘要: 在Android中,UI更新只能在UI线程中,即主线程。在子线程中更新UI需要回到UI线程中。有两种教简单的方法如下:1、View.Post(() => { });View.postDelay(() => { });2、runOnUiThread(() => { }); 阅读全文
posted @ 2015-11-02 10:47 一株青草儿 阅读(1533) 评论(0) 推荐(0)