Android根据图片路径取得图片

(惭愧,当年java是我唯一挂科的一门)

File file = new File(path);
ImageView img = (ImageView) findViewById(R.id.img);
if(file.exists()){
    Bitmap bm = BitmapFactory.decodeFile(path);
    img.setImageBitmap(bm);
}

    原文作者:徐乙
    原文地址: https://blog.csdn.net/qq_36523667/article/details/78935567
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞