Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
問題に名前を付ける方法がわかりませんでしたが、ユーザーが正方形をクリックするたびに一定期間キャンバスにテキストを表示しようとしています。タイマーで試しています
timer.schedule(new TimerTask() { public void run() { } }, 11000);
しかし、これは最初のクリックだけで機能し、2 回目はすぐに消えます。
試す
timer.schedule(new TimerTask() {....}, 0, //initial delay 11000); //subsequent rate