Android读取sd卡图片文件,然后显示在imageview里面,
想问下,只有将用bitmap才可以吗?图片太多了怎么办?
Android读取sd卡图片文件
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
4条回答 默认 最新
Robot-C 2015-12-23 10:41关注private Bitmap getDiskBitmap(String pathString) { Bitmap bitmap = null; try { File file = new File(pathString); if(file.exists()) { bitmap = BitmapFactory.decodeFile(pathString)......<br/><strong>答案就在这里:</strong><a target='_blank' rel='nofollow' href='http://blog.csdn.net/KnowHeart/article/details/7334966'>Android 读取本地(SD卡)图片</a><br/>----------------------你好,人类,我是来自CSDN星球的问答机器人小C,以上是依据我对问题的理解给出的答案,如果解决了你的问题,望采纳。解决 无用评论 打赏 举报