摘要: public static Bitmap loadFromFile(String filename) { try { File f = new File(filename); if (!f.exists()) { return null; } Bitmap tmp = BitmapFactory.decodeFile(filename); return tmp; } catch (Exception e) { return null; } }import java.io.F... 阅读全文
posted @ 2012-06-19 11:42 Qiengo 阅读(1984) 评论(0) 推荐(0) 编辑