This question already has answers here:
Android how to runOnUiThread in other class?

(6个答案)



executing runOnUiThread on a separate class [duplicate]

(3个答案)


2年前关闭。




我在android studio中创建了一个Java类,并且想在此类中使用runOnUiThread()。
我可以在没有Activity.xml的情况下在Android中运行runOnUiThread()线程吗?
如果答案是肯定的?比怎么?

最佳答案

是的。您只需要使用Handler即可。

 new Handler(Looper.getMainLooper()).post(new Runnable() {
                @Override
                public void run() {

                }
            });

关于java - 没有 Activity 的runOnUiThread ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51440514/

10-09 00:29