Changes
/* Content */
== Content ==
* Recap of [[CoursAndroid1|course 1]]
* Create a simple application using,:
** ASyncTask (easy threading)
** ContentProvider * Create a task with the basic implementation*** Perform a task in the doInBackground(easy ) method**** Get datafrom an URL using the URLConnection class*** Update a view from the task onPostExecute() method*** Publish progress to the UI using the onProgressUpdate() and publishProgress()methods
** Broadcast Receiver (easy sharing)
*** Declare the receiver (in the AndroidManifest.xml)
*** Implements Implement onReceive (Context context, Intent intent)*** Implement a share button** ContentProvider (easy data)
== Project leader ==