New Test, same as Test 2 but using Java executors instead of Android AsyncTask.
authorgumartinm <gu.martinm@gmail.com>
Thu, 22 Dec 2011 05:46:42 +0000 (06:46 +0100)
committergumartinm <gu.martinm@gmail.com>
Thu, 22 Dec 2011 05:46:42 +0000 (06:46 +0100)
commitbff39a82c1099c043d8ebef29a0711751e0f34f0
treebd55ce886a837993e8a890c118e1fcffc30651a3
parent3663ce4edebe170e595b288eb062ef0809db7998
New Test, same as Test 2 but using Java executors instead of Android AsyncTask.

1. The onPostExecute method from AsyncTask is executed in the UI thread and I do not want that behaviour,
so it seems the best option to lauch a new Thread using without using the AsyncTask

2. First steps retrieving the JSON data from sent by the RESTful Web Service
14 files changed:
Android/Testing/README [new file with mode: 0644]
Android/Testing/Test3/AndroidManifest.xml [new file with mode: 0644]
Android/Testing/Test3/gen/de/android/test3/R.java [new file with mode: 0644]
Android/Testing/Test3/proguard.cfg [new file with mode: 0644]
Android/Testing/Test3/project.properties [new file with mode: 0644]
Android/Testing/Test3/res/drawable-hdpi/alert_dialog_icon.png [new file with mode: 0755]
Android/Testing/Test3/res/drawable-hdpi/ic_launcher.png [new file with mode: 0644]
Android/Testing/Test3/res/drawable-ldpi/ic_launcher.png [new file with mode: 0644]
Android/Testing/Test3/res/drawable-mdpi/ic_launcher.png [new file with mode: 0644]
Android/Testing/Test3/res/layout/main.xml [new file with mode: 0644]
Android/Testing/Test3/res/layout/nextactivity.xml [new file with mode: 0644]
Android/Testing/Test3/res/values/strings.xml [new file with mode: 0644]
Android/Testing/Test3/src/de/android/test3/NextActivity.java [new file with mode: 0644]
Android/Testing/Test3/src/de/android/test3/Test3Activity.java [new file with mode: 0644]