if(bigimageS.length()==0){
show_image.setImageBitmap(null);
}else{
show_image.setImageBitmap(decodeImage(bigimageS));
}
****************
public static Bitmap decodeImage(String arrayList_image) {
BufferedInputStream bis;
URL aURL;
try{
aURL = new URL(arrayList_image);
URLConnection conn = aURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
bis = new BufferedInputStream(is);
Bitmap bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
return bm;
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
在imageview的設置空白圖像這是我的代碼,我想清楚imageview.my問題是我在bigimages String.i是從W/S加入IMAGEURL獲取圖像。在字符串bigimages.when我點擊下一個BTN後一次圖像設置,然後舊圖像不清晰。因此PLZ幫助我把條件,但不working.plz的幫助。無法清除或安卓
我現在用的是decodeimage用於解碼圖像,這樣是沒有辦法清除如果沒有URL中string..help我PLZ不能解決尚未
好...它的工作... – Android