当前位置: 代码迷 >> Android >> android中读取assets中的资料
  详细解决方案

android中读取assets中的资料

热度:92   发布时间:2016-05-01 13:50:35.0
android中读取assets中的文件
   private Bitmap getImageFromAssetFile(String fileName){      Bitmap image = null;      try{          AssetManager am = context.getAssets();          InputStream is = am.open(fileName);          image = BitmapFactory.decodeStream(is);          is.close();      }catch(Exception e){                }      return image;  }  

?

 InputStream in = getResources().getAssets().open(fileName);   
  相关解决方案