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.
所以我有一个游戏,如果玩家输了,会弹出一个对话框,询问玩家是否想再玩一次。
如果用户选择是,我如何重新启动游戏活动?
在ClickListener上的“是”按钮中,首先调用该finish()方法,然后在下一行,创建一个intent并启动相同的活动
finish()
intent
在您的活动中创建一个方法,将所有游戏值设置为其默认值。然后将侦听器添加到单击按钮并在其中调用此方法。
或者您可以启动相同活动的新实例。