之前我使用的是静态createImageToStorage()
方法并且工作正常,但我无法按照我想要的方式进行扩展,所以我决定创建一个类的实例并使用非静态方法。这是我的代码:
Label myLabel = findMyLabel();
ImageDownloadService imgService = new ImageDownloadService(URL_PREFIX+"images/"+picPath, myLabel);
imgService.setDownloadToStyles(true);
NetworkManager.getInstance().addToQueue(imgService);
图片无法加载,调试时InputStream
提供的ReadResponse()
没有数据。我做错了什么?
答案 0 :(得分:0)
由于bgImage
,应将其设置为样式的setDownloadToStyles
。我建议你使用URLImage
,它在缩放行为方面设计得更好。