Creating Android UI Programmatically

So far, in all my examples, I have been using the declarative way of creating an Android UI using

Android UI – Inflate from XML (Dynamic UI Creation)

We have seen that we can declare User Interface in Android through XML or we can even create the UI Programmatically. Now, we will see how we can mix

Broadcast Receivers | Android Developer Tutorial

The concept of Broadcast Receivers, one of the fundamental blocks of Android, is very simple. These are applications that will respond to any intent

Communicating between an activity and the browser - callback

A few days ago bhushan made an article about communicating between activites.  I'm currently working on a pet project that uses Oauth with the

How to make Tabs UI with icons

Your class has to extend TabActivity: public class YourClass extends TabActivity { ... ... } After

Location Manager

Location Manager | Android Developer Tutorial Location-based service is another key functionality that gets used by mobile applications. IT is often

Notifications - Android Tutorial for Beginners

Notifications - Android Tutorial for Beginners We have seen Activities and Intents. Now we need to move on to services. However, since services

Remote Service | Android Developer Tutorial

Remote Service | Android Developer Tutorial Services typically are required to run for a long time and hence should run in their own thread. Such