Android Application Development : UI Layouts
Tweet Providing a good user experience is critical to mobile applications. UI Application development in Android requires that you have a good understanding of Layouts. In this blog post, we shall...
View ArticleAndroid Async Task
Tweet This blog post introduces one of the important mechanism of Async Task for Android with sample code. Android implements single thread model and whenever an Android application is launched, a...
View ArticleAndroid Menus
Tweet An application menu is critical to any mobile application. This is because real estate in a mobile device is limited, so the developer has to make judicious use of menus to provide good...
View ArticleAndroid SQLite Database
Tweet At times we are in need to store some data locally for faster retrieving and processing. One of the ways to store data locally is to write it in the file, and read it whenever needed. But there...
View Article