Android之AssetManager使用
Posted zhchoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之AssetManager使用相关的知识,希望对你有一定的参考价值。
1. 获取AssetManager
AssetManager assetManager = context.getAssets();
2. 列出assets文件夹下全部文件
String[] filePathList = assetManager .list("");
3. 打开某个文件
InputStream is = assetManager .open("test.txt");
4. 获取到InputStream后,就能够通过IO库进行文件操作了。或者通过BitmapFactory.decodeStream(is)得到Bitmap对象
以上是关于Android之AssetManager使用的主要内容,如果未能解决你的问题,请参考以下文章