category

home / developersection / category

Android Technology
android 13-Aug-2012
Android Technology

There are different mobiles and computers operating systems like different models of computers and mobiles. Android is one of the operating systems using by the smart phones.

Thread in Android(MultiThreading in android with example)
android 02-Nov-2011
Thread in Android(MultiThreading in android with example)

Android supports standard Java Threads. You can use standard Threads and the tools from the package java.util.concurrent to put actions into the bac

Display Data in GridView in Android
android 01-Nov-2011
Display Data in GridView in Android

Display Data in GridView in AndroidHere In this article, I am going to explain how to display data in GridView in an Android application. And here i

Using AsyncTask in Android Application
android 31-Oct-2011
Using AsyncTask in Android Application

In this article I am going to explain how to use AsyncTask in an android application. In this example we will use AsyncTask to download the content of the webpage.

Using Handler in Android Application
android 31-Oct-2011
Using Handler in Android Application

In this article I am going to explain how to create a handler in an Android application. In this example I will use the class Handler to update a ProgressBar in a background thread.

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.