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.
我正在android上开发应用程序,它必须有离线地图。我正在使用 OSMDroid 并使用 MOBAC 创建了图集。一切正常,但我不知道如何在安装过程中解压图集。你能建议我如何在 .apk 中打包所有图块并在安装到 sdcard 上解压它们吗?
将它们包含在您的 res/raw 文件夹中。在运行时,您可以使用
InputStream stream = context.getAssets().open("filename");
并将其保存到 SD 卡。