//獲取Options對象
BitmapFactory.Options options = new BitmapFactory.Options();
//僅做解碼處理兽肤,不加載到內(nèi)存
options.inJustDecodeBounds = true;
//解析文件
BitmapFactory.decodeFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/test.png", options);
//獲取寬高
int imgWidth = options.outWidth;
int imgHeight = options.outHeight;
如果你只想顯示的話,我是個懷舊的人闷袒,還是喜歡用ImageLoader
ImageLoader.getInstance().displayImage(url, displayImgId);