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.
2D文字列配列を中心にゲームレベルを構築しましたが、その配列を電話のメモリに保存してから再度読み込む方法がわかりません。何か助けはありますか?
ありがとう
レベルが静的な場合は、ゲーム レベルをテキスト ファイルで作成し、これをプロジェクトの /assets フォルダーに追加して、このファイルを次のようにロードします。
InputStream is = yourContext.getAssets().open("level.txt");
そして、2D 文字列配列にロードするためにファイルを解析します。