我想在使用Glide的imageview中加載https圖像。圖像沒有加載,但如果我提供一些本地圖像(例如R.drawable.error_image),它會加載。爲什麼Glide不能在android中加載https圖像?
imagePath =「https://s-media-cache-ak0.pinimg.com/736x/d3/6b/83/d36b83e986e500aa7f39c722970f1f97.jpg」; //樣圖網上花了
Glide.with(this)
.load(imagePath)
.into(landingImage);
編譯 'com.github.bumptech.glide:滑翔:4.0.0-RC0'
我試着在SOF也搜索,但沒有」不能修復。提前建議感謝。
你嘗試調試? 這是什麼意思「如果我提供一些將加載的錯誤圖像」?如果您使用本地圖像,或...?不同的網址? – Markon
@Markon感謝您寶貴的時間。錯誤圖像意味着 - 從我的項目中繪製圖像 – Srihari