/**
* 根据磁盘路径取得
* @param pathString
* @return
*/
public Bitmap getDiskBitmap(String pathString)
{
Bitmap bitmap = null;
try
{
File file = new File(pathString);
if(file.exists())
{
bitmap = BitmapFactory.decodeFile(pathString);
}
} catch (Exception e)
{
e.printStackTrace();
return null;
}
return bitmap;
}
ShareUtil.java 文件源码
java
阅读 40
收藏 0
点赞 0
评论 0
项目:Huochexing12306
作者:
评论列表
文章目录