2015-05-05 46 views
0

早些時候我使用靜態createImageToStorage()方法,它工作正常,但我無法按照我想要的方式獲得縮放比例,所以我決定創建一個類的實例並使用非靜態方法。這裏是我的代碼:ImageDownloadService問題

Label myLabel = findMyLabel(); 
ImageDownloadService imgService = new ImageDownloadService(URL_PREFIX+"images/"+picPath, myLabel); 
imgService.setDownloadToStyles(true); 
NetworkManager.getInstance().addToQueue(imgService); 

圖片不加載,當我調試通過ReadResponse()提供的InputStream沒有數據。我究竟做錯了什麼?

回答

0

由於setDownloadToStyles,它應該設置爲樣式的bgImage。我建議您使用URLImage,這是關於縮放行爲更好的設計。