我正在为 Android 创建一个匹配游戏,当用户获得匹配时,应该会弹出一个对话框,上面写着“匹配!” 我无法弄清楚如何做到这一点。如果我使用 Thread.currentthread().sleep,则对话框永远不会出现。
android.app.AlertDialog a = new android.app.AlertDialog.Builder(match.this).setTitle("Match!").show();
Thread.currentthread().sleep(1000);
a.dismiss();
什么都没有发生 - 程序只是挂起一秒钟。我希望它只弹出 1 秒钟,或者如果有另一种弹出类型的东西,那也很好。