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.my问题是我在bigimages中获取图像String.i我从w / s.in字符串bigimages添加imageurl当我点击下一个btn后一次图像设置然后旧图像不清楚.所以请帮助我放置条件但不工作.plz帮助.
我正在使用decodeimage解码图像,所以是否有任何方法可以清除字符串中是否有网址.帮助我,我还没解决
解决方法:
从photoshop创建一个空白/透明的png图像,并应用为您的图像背景.