This file contains 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
"province": [ | |
{ | |
"id": "0", | |
"name": "Bocas del Toro", | |
"district": { | |
"Almirante": { | |
"corregimientos": [ | |
"Puerto Almirante", "Barriada Guaymí", "Barrio Francés", "Nance de Riscó", "Valle de Aguas Arriba", "Valle de Riscó" | |
] | |
}, |
This file contains 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
// The Very Basic | |
new AsyncTask<Void, Void, Void>() { | |
protected void onPreExecute() { | |
// Pre Code | |
} | |
protected Void doInBackground(Void... unused) { | |
// Background Code | |
return null; | |
} | |
protected void onPostExecute(Void unused) { |