How to use SQLite in ANDROID, A really simple example.
Hello ANDROID Lovers…….. In today’s tutorial I will show you how to deal with SQLite Databases in ANDROID. You know that SQLite are Lightweight databases which is maintained only on the client side....
View ArticleSQLiteManager plugin for eclipse
When you are working on an Android application that stores data in a SQLite database.There arise many questions like where does this database file get stored on the filesystem ? How can we access the...
View ArticleShow data in columns in a TableView dynamically in Android.
Hello all, Often we need to show data from a source such as a database in a tableView like we see in an HTML Page. Now in Android also we can do this with the help of TableLayout. We can create dynamic...
View ArticleCreating a custom Sliding GalleryView with Paging in android
This is a simple example showing A sliding Gallery in android. This example shows a sliding gallery with a paging Control and a changing page text which also indicate the page change. Create a new...
View ArticleHow to load a spinner with values from SQlite Database in android?
Here is a simple example showing how to load a database values in a spinner in android. OK we will start. This is the layout for the spinner row. spinner_row.xml <?xml version="1.0"...
View ArticleHow to create animation by default in a GridLayout in Android?
This example shows you how to create animation using the default XML tag in a gridview. This application demonstrates how to use the animateLayoutChanges tag in XML to automate transition animations as...
View ArticleHow to enable Default Layout Animations in Android?
This Activity shows a simple layout animation. Here we add a new Button to the layout with “APPEARING” animation. You can have a variety of Default animations. Activity package...
View Article