如何保存模拟器中的更改
我尝试在 Android 模拟器上加载游戏。当我关闭模拟器并再次打开它时,游戏仍然存在,但它不会保存 - 总是从第一阶段开始。有没有办法保存模拟器上的更改?
我非常感谢您提供的任何帮助。
I tried to load a game on an android emulator. When I close the emulator and open it again the game is still there but, it doesn't save—always starting from the first stage. Is there a way to save changes on the emulator?
I really appreciate any help you can provide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
模拟器有自己的磁盘部分专用于其“内部存储器”,因此应保存您的设置和信息。
也许游戏将信息保存在 SD 卡上,在这种情况下,模拟器可能无法配置为允许保存在虚拟存储卡上。
创建一个新的虚拟设备并使用虚拟 SD 卡对其进行设置,看看是否有帮助。
有关虚拟设备的更多信息,请参阅此处:
http://developer.android.com/指南/开发/设备/index.html
The emulator has its own portion of disk dedicated to its 'internal memory', so your settings and information should be saved.
Perhaps the game saves information on the SD card, in which case the emulator may not be configured to allow saving on a virtual memory card.
Create a new virtual device and set it up with a virtual SD card, and see if that helps.
See here for more information on virtual devices:
http://developer.android.com/guide/developing/devices/index.html
要添加到 HXCaine,如果您想创建 SD 卡,您可以使用 Android SDK 工具目录中的“mksdcard.exe”。
创建模拟器时,选择通过 mksdcard.exe 文件创建的文件。
要选择已创建的模拟器,请在 Eclipse 中转到
Window->Android SDK & AVD 管理器 ->选择AVD->编辑-> SDCard 部分选择“文件”单选按钮,然后浏览到通过 mksdcard.exe 创建的文件,
保存更改并重新启动模拟器。
问候,
S苏曼185
To add to the HXCaine, if you want to create sd card, you can make use of the "mksdcard.exe" present in the tools directory of the Android SDK.
When creating the emulator there select the file which is created through the mksdcard.exe file.
For selecting for the already created Emulator, In Eclipse go to
Window->Android SDK & AVD Manager -> Select the AVD -> Edit -> SDCard section select the File radio button and then browse to the file which is created through mksdcard.exe
Save the changes and restart the emulator.
Regards,
SSuman185