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.
我已经围绕二维字符串数组构建了我的游戏关卡,但我不知道如何将该数组保存到手机内存然后再次加载它。有什么帮助吗?
谢谢
如果您的关卡是静态的,您可以在文本文件中创建游戏关卡,将其添加到 /assets 文件夹中的项目中,然后使用以下内容加载此文件:
InputStream is = yourContext.getAssets().open("level.txt");
并解析文件以加载二维字符串数组。