首页 > 系统 > Android > 正文

Android 加载assets中的资源文件实例代码

2019-12-12 03:53:13
字体:
来源:转载
供稿:网友

Android 加载assets资源

在android中,如何加载assets目录下的文件夹呢?方法很简单,使用 AssetManager, 即

  AssetManager assetManager = getAssets();  

例子如下:

AssetManager assetManager = getAssets();              try {         String[] files = assetManager.list("Files");           for(int i=0; i<FILES.LENGTH;              {  。。。。。。。        } 

 读assets下的图片

try {               InputStream ims = assetManager.open("android_logo_small.jpg");            Drawable d = Drawable.createFromStream(ims, null);           // set the drawable to imageview         imgAssets.setImageDrawable(d);   

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表