How do we use runOnUiThread in Android?

前端 未结 12 945
太阳男子
太阳男子 2020-11-22 00:09

I\'m new to Android and I\'m trying to use the UI-Thread, so I\'ve written a simple test activity. But I think I\'ve misunderstood something, because on clicking the button

12条回答
  •  深忆病人
    2020-11-22 00:48

    Just wrap it as a function, then call this function from your background thread.

    public void debugMsg(String msg) {
        final String str = msg;
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                mInfo.setText(str);
            }
        });
    }
    

提交回复
热议问题