Welcome to ANDROID Developer!

Friday, May 23, 2014

DatePickerDialog


Hi Guys! Today I am going to share about the code of Date Picker in Android. This class is a widget for selecting a date. The date can be selected by a year, month, and day spinners or a CalendarView. The set of spinners and the calendar view are automatically synchronized. The client can customize whether only the...

Custom dialog


Hi Guys!! Today I am sharing the code about the custom dialog with by using the inflater. we can make the layout inflate on the view. By help of the Alert Dialog we can create the custom the Alert Dialog . More about the Alert Dialog you can visit the android developer site Alert Dialog. So lets start...

ListView with multiple choice


Hi Guys!! Today i am sharing the code of the multiple choice option select in list view. ListView is a view group that displays a list of scrollable items. The list items are automatically inserted to the list using an Adapter that pulls content from a source such as an array or database query and converts each item...

Start Activity from Broadcast Recevier


Some time we need to start an Activity from Broadcast Receiver.. how can we achieve this i am going to write step by step. So lets create a small App to do this things  ------------------------------------------- App Name: BReceiver2Activity Package Name: com.sunil Android SDK: Android SDK 2.2 / API 8 ------------------------------------------- MyReceiver.java package com.sunil;      import android.content.BroadcastReceiver;   import android.content.Context;   import android.content.Intent;   import android.util.Log;   import android.widget.Toast;      public class MyReceiver extends BroadcastReceiver {     ...

Grid View Demo With Images


GridView is a ViewGroup that displays items in a two-dimensional, scrollable grid. We are going to create a Grid View to show Images, where we can select each item via click. so lets create simple app with default activity "GridViewActivity" and put this code inside it.    package com.sunil; import android.app.Activity;   import android.os.Bundle;   import android.view.View;   import android.widget.AdapterView;   import android.widget.GridView;   import android.widget.TextView;   import android.widget.Toast;   import android.widget.AdapterView.OnItemClickListener;      public class GridViewActivity extends Activity {         ...

Android Animation App - Bouncing Ball


So looking for play with animation stuff.. good!! you are on right place  :) today we are going to learn how to create simple android animation app. so in this application we will create Background View and Ball programatically which will jump. let's began the code, first of all we need to create simple android app having single Activity...