1

I have a directory which contains some files. I want to bundle this directory inside apk file so that when I install apk file the directory gets copied to a particular location on the android device.

Can I bundle a directory inside apk file as I didn't find this information on developer.android.com? Do I need to modify any configuration file for this?

Thanks.. Ajay

4

2 回答 2

3

你不能,但你可以看看 android assets 文件夹,

http://developer.android.com/guide/topics/resources/providing-resources.html

资产是原始资源,它们不会被 android 编译器压缩。

从开发者网站:

资产/

这是空的。您可以使用它来存储原始资产文件。您在此处保存的文件将按原样编译为 .apk 文件,并保留原始文件名。您可以像使用 URI 的典型文件系统一样导航此目录,并使用 AssetManager 将文件作为字节流读取。例如,这是放置纹理和游戏数据的好位置。

于 2012-10-16T11:11:53.677 回答
2

apk 中的assets/文件夹旨在以任何格式存储任何额外的用户文件。它们将在编译阶段自动包含到 apk 中,并且可以使用getAssets()函数从应用程序访问。

于 2012-10-16T11:12:45.093 回答