This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class FetchWeatherTask extends AsyncTask<Void,Void,Void> { | |
private final String LOG_TAG = FetchWeatherTask.class.getSimpleName(); | |
@Override | |
protected Void doInBackground(Void... params) { | |
// These two need to be declared outside the try/catch | |
// so that they can be closed in the finally block. | |
HttpURLConnection urlConnection = null; | |
BufferedReader reader = null; | |
// Will contain the raw JSON response as a string. |