问题
When targetSdkVersion = 27, the AQuery URL images load good. But when it equals 28, the images don't load and the image loading place holder is shown. Any ideas how to solve this so that I can target API 28?
回答1:
I don't know why, but I added
<!-- for targetsdk 28 -->
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
on AndroidManifest.xml, and AQuery now works again on targetSdk 28.
来源:https://stackoverflow.com/questions/53077124/how-to-make-aquery-images-load-when-targetsdkversion-is-api-28