0
早些時候我使用靜態createImageToStorage()
方法,它工作正常,但我無法按照我想要的方式獲得縮放比例,所以我決定創建一個類的實例並使用非靜態方法。這裏是我的代碼:ImageDownloadService問題
Label myLabel = findMyLabel();
ImageDownloadService imgService = new ImageDownloadService(URL_PREFIX+"images/"+picPath, myLabel);
imgService.setDownloadToStyles(true);
NetworkManager.getInstance().addToQueue(imgService);
圖片不加載,當我調試通過ReadResponse()
提供的InputStream
沒有數據。我究竟做錯了什麼?