美文网首页
assets目录下的资源引用

assets目录下的资源引用

作者: 键盘亦非侠 | 来源:发表于2016-12-07 11:50 被阅读0次

    IDE环境:Android Studio 2.2.1

    android studio默认没有assets目录,所以需要首先建立该目录,目录所在路径 android module/src/main(注意assets中所有字母都为小写)

    下面就用一段代码进行assets下的图片引用:
    <pre>
    ImageView mImageView = (ImageView) findViewById(R.id.image);
    AssetManager am = getAssets();
    InputStream is =null;
    try {
    is = am.open("play.png");
    Bitmap bitmap = BitmapFactory.decodeStream(is);
    mImageView.setImageBitmap(bitmap);
    } catch (IOException e) {
    e.printStackTrace();
    }finally {
    if(is !=null) {
    try {
    is.close();
    } catch (IOException e) {
    e.printStackTrace();
    }
    }
    }
    </pre>

    相关文章

      网友评论

          本文标题:assets目录下的资源引用

          本文链接:https://www.haomeiwen.com/subject/arpdmttx.html