I found difficulty to load image from url in every 30 seconds in android imageview,this effect performance issue.I am no able to perform any other button click action on that android-activity because of continues image loading.How can I improve performance?.Is there is a way to perform this in background?
Share
I would use an AsyncTask. Perform your image loading from URL in
doInBackgroundand then update your ImageView inonPostExecute.