I'm trying to use Universal Image Loader but I have a strange problem. My application can not load the image. It logged a error which is "Unable to resolve host "baodientu.chinhphu.vn": No address associated with hostname" Even I try to add another sample code (I checkouted from https://github.com/nostra13/Android-Universal-Image-Loader), it's still not displayed. But I try this url in browser. it is displayed. My url is http://baodientu.chinhphu.vn/uploaded_vgp/dangdinhnam/20130626/nguoi%20lao%20dong.jpg Please help me to find the reasons.
It is not problem with ImageLoader.. It has a Problem with Your server side.
There is server down or host name may be wrong or you can not give a permission of Internet to access it..
So try to add permission to your manifest file:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />