0
我做了一個html IDE,想打包一些可以添加到網站上的js庫。我需要考慮完成這件事情?如何在應用中捆綁文件?
我做了一個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"));
};
也許你正在尋找[AssetManager(http://thedevelopersinfo.com/2009/11/17/using-assets-in-android/) ? – kamituel
謝謝,就是這樣:) – RapsFan1981