I have an AsyncTask that retrieves information from the internet. But when signal or wifi connection is weak. The AsyncTask times out and the app force closes.
I was thinking maybe i could have a timer set up so when the AsyncTask takes more than 20 seconds, then it Displays a dialog or even a toast, and sends the user to the previous activitiy in the class.
How would i go about doing this?
I know the smart way would be to count increasing a int
Maybe something like..
private class fetcher extends AsyncTask<Void,Void,Void>{
protected void DoInBackground(){
for(int i = 0;i<20;i++){
//DO something
Am i on the right track? Some guidence would be helpful!