In one of my apps' activities there is a map which i load markers from a web request. In the onCreate
method i check for internet connection if there is none then i create a Toast
notifying the user.
My question is, how does the Activity handle that action so i could put my code to make the web request again?
I tried onResume
but nothing happened.