1分钟后运行一个功能

时间:2018-06-05 14:00:44

标签: java android

如何在java中运行一个函数,类似于

C#

Thread.Sleep(60000);

1 个答案:

答案 0 :(得分:1)

您可以使用handler.postDelayed,它将以毫秒运行runnable

new Handler().postDelayed(() => {
    // Run your function
}, 60000);