Android basics: running code in the UI thread

后端 未结 7 605
悲&欢浪女
悲&欢浪女 2020-11-22 11:55

In the viewpoint of running code in the UI thread, is there any difference between:

MainActivity.this.runOnUiThread(new Runnable() {
    public void run() {
         


        
7条回答
  •  没有蜡笔的小新
    2020-11-22 12:20

    use Handler

    new Handler(Looper.getMainLooper()).post(new Runnable() {
        @Override
        public void run() {
            // Code here will run in UI thread
        }
    });
    

提交回复
热议问题