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.
我想编写一个小电子鸡来练习。我只是在想我应该如何处理价值观、饥饿和睡眠。我应该运行两个每 10 分钟更改一次值的计时器,然后保存它还是有更好的方法来做到这一点?
如果您只希望 Tamagotchi 在应用程序运行时处于饥饿或困倦状态,请使用Handler和Runnable。这些是 Android 特定的计时器。
如果您希望 Tamagotchi 在应用程序未运行时更改状态,则需要使用AlarmManager创建重复警报以启动应用程序。