如何暂停执行Android Studio的代码

时间:2019-01-05 00:04:17

标签: android-studio

因此,我正在创建一个simon说游戏,我想知道如何在Android Studio中暂停代码。我有一种方法可以更改按钮的颜色并将其更改回。

但是,当我必须更改2个按钮时,由于我使用的是倒数计时器,因此用户无法先知道哪个按钮更改了颜色。我知道如果我使用睡眠,UI将会崩溃,所以我想知道我能做什么。

这是我正在谈论的方法

Options +FollowSymLinks
RewriteEngine on
# Redirect /page.php, /page.html, and /page.htm to /page
RewriteRule ^(.+)\.(php|html|htm)\/*$ /$1 [R,L]
# If the page is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-d
# Internally redirect /page to /index.php?page=page
RewriteRule ^(.*?)/?$ /index.php?page=$1 [NC,END]
# Redirect /index to /
Redirect /index /

当我第一次这样做时,我没有意识到程序不会等待倒计时完成然后执行,而是运行倒计时并继续执行循环的下一个迭代。我想知道如何运行此循环并等待颜色变回原来的颜色,然后再继续循环的下一次迭代。

0 个答案:

没有答案