60 days in Android programming – The beginning
Day 1- Create development environment for Android Day 2- Create Android Virtual Device(AVD) Day 3- create your first android project Day 4- create simple UI Day 5 – Using table layout to display child...
View ArticleDay 1 – Create development environment for Android
Prepare your Development Computer The following are the Supported Operating Systems for developing Android applications using the Android SDK: Windows XP (32-bit), Vista (32- or 64-bit), or Windows 7...
View ArticleDay 2 – Create Android Virtual Device(AVD)
We have setup Android development environment,see Day 1 – Create development environment for Android and now our next step is to create a first android program. Before creating android application we...
View ArticleDay 3 – Create your first Android application
Recap In this article we will learn how to create a Android application. I will tell you about eclipse development window and some basic about the android application.Till now we have create Android...
View ArticleDay 4 – Create simple UI
In this article we will learn how to create a user interface in Android application. We create a form that contains some UI controls such as button or textbox something like this: from the above...
View ArticleUsing String Resources
When you need to add text in the user interface, Suppose you need to show some text on the button view,you should always specify each string of text in a resource file strings.xml that is located in...
View ArticleDay 5 – Using table layout to display child View elements
In the last post we have seen how we can use relative layout to organize view elements. And this post demonstrate how to display view elements in the table layout. It is same as creating table in...
View Article