欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android中读取assets中的文件

程序员文章站 2022-07-01 16:06:28
...
   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);