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.
我是 Android 编程新手。我有一个按钮,上面写着
“你想重新开始游戏吗”?
单击此按钮时,我希望游戏重置,以便它返回到初始状态,即当用户第一次打开游戏时。我应该通过调用该onCreate()方法来做到这一点,如果是这样,怎么做?
onCreate()
你不应该onCreate手动调用。从头开始当前活动的一种非常简单的方法是:
onCreate
finish(); startActivity(MyActivity.class, getIntent());