我想创建一个作为前端的应用程序来启动带有预加载游戏的模拟器。
我有emu源代码,但我无法编辑它。在onCreate(Bundle savedInstanceState)
模拟器的主要活动的方法中有这一行:
if (savedInstanceState != null)
currentGame = savedInstanceState.getString("currentGame");
如果在(重新)创建活动时找到了一个,这似乎使模拟器运行最新的游戏。
有没有办法编辑 savedInstanceState 使其包含currentGame
字符串?