tag

home / developersection / tag

Select Query in Android Application
android 29-Oct-2011
Select Query in Android Application

In this article I am going to explain how to use select query in an Android application and fetching records from the cursor in Android.Start a new pr

Insert, Update, Delete in Android
android 28-Oct-2011
Insert, Update, Delete in Android

Android provides easy way to manage structured data in SQLite database. It has full support for SQLite database. Any databases you create will be acce

Create Table in Android Database
android 27-Oct-2011
Create Table in Android Database

In this article I am going to explain how create a database in an Android application and how create table in the database. Start a new project name

SQLite in Android
android 26-Oct-2011
SQLite in Android

SQLite is an Open Source Database which is embedded into Android. SQLite supports standard relational database features like SQL syntax, transactions and prepared statements. In addition it requires only little memory at runtime (approx. 250 Kbyte).

Time picker in Android Application
android 26-Oct-2011
Time picker in Android Application

In this article, I am going to explain how to create a TimePickerDialog, which presents the time picker in a floating dialog box at the press of a button. When the time is set by the user, a TextView will update with the new date.

Date Picker in Android Application
android 25-Oct-2011
Date Picker in Android Application

In this article, I am going to explain how to create a DatePickerDialog, which presents the date picker in a floating dialog box at the press of a button. When the date is set by the user, a TextView will update with the new date.

Rating Bar control in Android
android 24-Oct-2011
Rating Bar control in Android

In this article I am going to explain how to create rating bar control in an android application by using RatingBar widget. When a user click on the rating bar, a new rating will be displayed by the toast message.

Spinner control in Android Application
android 22-Oct-2011
Spinner control in Android Application

In this article I am going to explain how create a spinner control in an android by using Spinner widget. I also explain how to add list of items in a Spinner, when one is selected, a toast message will display the selected item.

Checkbox control in Android Application
android 22-Oct-2011
Checkbox control in Android Application

In this article I am going to explain how to create a checkbox control in android application by using CheckBox widget. When the CheckBox is pressed,

AutoComplete TextBox in Android
android 21-Oct-2011
AutoComplete TextBox in Android

In this article I am going to explain how to create an AutoComplete textbox by using AutoCompleteTextView widget in an Android application. In this article I am going to create AutoCompleteTextView widget that provides suggestions for student names.

Radio Buttons control in Android
android 20-Oct-2011
Radio Buttons control in Android

In this article, I am going to explain how to create two mutually-exclusive (in a group) radio buttons (enabling one disables the other), using the RadioGroup and RadioButton widgets. When either radio button is pressed,

Button Controls in Android Application
android 20-Oct-2011
Button Controls in Android Application

In this article I am going to explain how to create and use a button control in an Android Application. I am going to create three button (New, Save, Print), when a user clicked on the button the toast message will be display.