我制作了html IDE,并希望打包一些可以添加到站点的js库。我需要研究什么才能完成此任务?
最佳答案
就像kamituel指出的那样,请使用AssetManager
。
http://developer.android.com/reference/android/content/res/AssetManager.html
这是一个例子:
AssetManager assetManager = this.getAssets();
Bitmap[] yourImages = new Bitmap[] {
BitmapFactory.decodeStream(assetMgr.open("firstimage.png"));
BitmapFactory.decodeStream(assetMgr.open("secondimage.png"));
BitmapFactory.decodeStream(assetMgr.open("thirdimage.png"));
};
关于java - 如何在应用程序中 bundle 文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19466244/