Android development primer: Looking into Eclipse IDE
This post is aimed at giving you a little idea about what Eclipse IDE is and how you can use it’s features to the fullest for relatively faster coding. This is ...
This post is aimed at giving you a little idea about what Eclipse IDE is and how you can use it’s features to the fullest for relatively faster coding. This is ...
We saw that on creating an Android Application Project, a skeleton “Hello World” application is created. The “Hello World” module is always the first step to le...
This is a short note on using binary search, in continuance of my series on Algorithms. Suppose we have to find whether a particular element exists in the sorte...
Linux is a Unix-like computer operating system. Linux was originally developed as a free operating system for Intel x86-based personal computers. Now its popula...
I’m sure when you look at the Graphical Layout of any xml file in Android, what catches your attention more than the layout itself is the long list of elements ...
So now that you have a little idea what Android is all about, we will create our very first Android Project. Launch Eclipse IDE. Navigate to File->New->An...
To find n^k,using brute force, ALGORITHM- Initialize result to 1. Iterate from 1 to k and multiply n to result. Return result. CODE- result=1; for(i=1;i<=k;i...
In this post,I am going to tell you some tips and tricks which you should know & you can implement in your codes if required.You dont need to require long c...
Once you have set up the Android SDK and AVD in your system, I would like to take some time and provide you with a little description of the Android Platform so...
This is the first post on Android Application Programming and is hence aimed at walking you through setting up the Android Software Development Kit (sdk) and Ec...