Android Timer Example
In this example we are going to create a simple Android Timer application. We are going to use some very basic ideas and tools, like Handler, that you can use in many cases in your Applications. We...
View ArticleAndroid Asynctask Example
In this tutorial we are going to see how to use Android AsyncTask. As we read from the Android Documentation : AsyncTask enables proper and easy use of the UI thread. This class allows to perform...
View ArticleAndroid Handler Example
In this example we are going to see how to use Android Handler. As we read from the official documentation: a Handler allows you to send and process Message and Runnable objects associated with a...
View ArticleAndroid Bundle Example
As we have seen in our previous example Android StartActivityForResult Example, in Android, the Intent describes the activity to be executed. An Intent contains certain header, action and type, but...
View Article