for 5th semester

24
Android DatePicker Recently I wrote a tutorial on android notifications  and there we touched dialog notifications. Android’s date picker is a type of dialog. This tutorial is to explain how to create a date picker dialog in android. This dialog will disable the background activity until the user select the date and click done’ tab of the dialog shown. !ollowing are the steps to create date picker" #. $r eati ng new pr o% ec t. &. Des igni ng th e lay out with date pick er icon. '. (en era te cod e to di spla y dat epic ker dial og. #. $reating a new pro%ect. )e have already seen this step *ultiple ti*es. Refer (et +ser Input in Android tutorial to recollect those steps. &. Designing the layout with datepicker icon. ,pen the x*l file for layout design fro* the path workspace-(et+serInput-res-layout-activity*ain.x*l. /elect the (raphic layout tab. Drag and drop the 0ditText fro* for* widgets’ and set properties of the right panel. )hile selecting the 0ditText1 choose the one appropriate for the date type. There are several types of 0ditText for various input that are supposed to be entered by the user. $ode will be like this1 20ditText

Upload: rubhanprakaash

Post on 02-Jun-2018

222 views

Category:

Documents


0 download

TRANSCRIPT

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 1/24

Android DatePicker

Recently I wrote a tutorial on android notifications and there we touched dialog

notifications. Android’s date picker is a type of dialog. This tutorial is to explain how

to create a date picker dialog in android. This dialog will disable the background

activityuntil the user select the date and click done’ tab of the dialog shown.

!ollowing are the steps to create date picker"

#. $reating new pro%ect.

&. Designing the layout with datepicker icon.

'. (enerate code to display datepicker dialog.

#. $reating a new pro%ect.

)e have already seen this step *ultiple ti*es. Refer (et +ser Input in

Android tutorial to recollect those steps.

&. Designing the layout with datepicker icon.

,pen the x*l file for layout design fro* the path

workspace-(et+serInput-res-layout-activity*ain.x*l.

/elect the (raphic layout tab.

Drag and drop the 0ditText fro* for* widgets’ and set properties of the right

panel.

)hile selecting the 0ditText1 choose the one appropriate for the date type. There are

several types of 0ditText for various input that are supposed to be entered by the

user. $ode will be like this1

20ditText

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 2/24

android"id3456id-editText#4

android"layoutwidth34wrapcontent4

android"layoutheight34wrapcontent4

android"layoutalignParent7eft34true4

android"layoutalignParentTop34true4

android"layout*argin7eft34&8dp4

android"layout*arginTop349:dp4

android"e*s34#84

android"inputType34date4 ;

2re<uest!ocus -;

Drag and drop the I*age=utton field fro* the i*ages and *edia *enu’.

)hen we try to place this i*agebutton1 the icon has to be selected to display for

i*agebutton. !or that we should save a datepicker icon into res.drawable folder.

And then1 we need to set properties nedded like on$lick1 Padding and so on. After

co*pleteting this step1 the code will look like as follows1

2I*age=utton

android"id3456id-i*age=utton#4

android"layoutwidth34wrapcontent4

android"layoutheight34wrapcontent4

android"layoutalign=otto*3456id-editText#4

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 3/24

android"layouttoRight,f 3456id-editText#4

android"contentDescription345string-selectdate4

android"cropToPadding34true4

android"on$lick 34selectDate4

android"src345drawable-icdatepicker4 -;

!inally layout code will be like1

actvity*ain.x*l

2Relative7ayout x*lns"android34http"--sche*as.android.co*-apk-res-android4

x*lns"tools34http"--sche*as.android.co*-tools4

android"layoutwidth34*atchparent4

android"layoutheight34*atchparent4

android"on$lick 34selectDate4 ;

20ditText

android"id3456id-editText#4

android"layoutwidth34wrapcontent4

android"layoutheight34wrapcontent4

android"layoutalignParent7eft34true4

android"layoutalignParentTop34true4

android"layout*argin7eft34&8dp4

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 4/24

android"layout*arginTop349:dp4

android"e*s34#84

android"inputType34date4 ;

2re<uest!ocus -;

2-0ditText;

2I*age=utton

android"id3456id-i*age=utton#4

android"layoutwidth34wrapcontent4

android"layoutheight34wrapcontent4

android"layoutalign=otto*3456id-editText#4

android"layouttoRight,f 3456id-editText#4

android"contentDescription345string-selectdate4

android"cropToPadding34true4

android"on$lick 34selectDate4android"src345drawable-icdatepicker4 

-;2-Relative7ayout;

'. (enerate code to display date picker dialog

I*port the needed classes and then create the instance of !rag*entActivity.

+sually instance will be created for Activity class. =ut in this this application it is

created for !rag*entActivity. This helps our activity to create a frag*ent as a

popup on top of the layout.

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 5/24

$reating subclass which extends Dialog!rag*ent class and i*ple*ents

DatePickerDialog.,nDate/et7istener *ethod. This subclass includes *ethod to

display the datepicker frag*ent to the user. It also has the *ethod to handle the

event on setting the date.

5,verridepublic 

Dialog on$reateDialog>=undle savedInstance/tate?

 @

final $alendar calendar 3 $alendar.getInstance>?

int yy 3 calendar.get>$alendar.B0AR?

int ** 3 calendar.get>$alendar.C,TE?

int dd 3 calendar.get>$alendar.DAB,!C,TE?

return new DatePickerDialog>getActivity>?1 this1 yy1 **1 dd?F

public void onDate/et>DatePicker view1 int yy1 int **1 int dd?

@populate/etDate>yy1 **6#1 dd?F

The on$reateDialog>? *ethod creates a calendar ob%ect. +sing this ob%ect the

current day1 *onth and year that will be retrieved. This current instance will return

to the activity to display the date picker with the current date by default.

onDate/et>? *ethod calls the populate/etDate>? with the selected date para*eters.

This *ethod will update the 0ditText field with the following code.

public void populate/etDate>int year1 int *onth1 int day? @*0dit 3

>0ditText?findGiew=yId>R.id.editText#?*0dit.setText>*onth64-46day64-46year?F

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 6/24

The entire code is as shown below.

CainActivity.%ava

package co*.%avapapers.andoiddatepickeri*port 

co*.%avapapers.andoiddatepicker.R i*port android.os.=undlei*port 

android.view.Giewi*port android.widget.0ditTexti*port 

android.widget.DatePickeri*port 

android.support.vH.app.!rag*entActivityi*port android.app.Dialog

i*port android.app.DatePickerDialog

i*port android.support.vH.app.Dialog!rag*ent

i*port %ava.util.$alendar

public class CainActivity extends !rag*entActivity @

0ditText *0dit

5,verride

public void on$reate>=undle savedInstance/tate? @

super.on$reate>savedInstance/tate?

set$ontentGiew>R.layout.activity*ain?

F

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 7/24

public void selectDate>Giew view? @

Dialog!rag*ent new!rag*ent 3 new /electDate!rag*ent>?

new!rag*ent.show>get/upport!rag*entCanager>?1 4DatePicker4?

F

public void populate/etDate>int year1 int *onth1 int day? @

*0dit 3 >0ditText?findGiew=yId>R.id.editText#?

*0dit.setText>*onth64-46day64-46year?

F

public class /electDate!rag*ent extends Dialog!rag*ent i*ple*ents 

DatePickerDialog.,nDate/et7istener @

5,verride

public Dialog on$reateDialog>=undle savedInstance/tate? @

final $alendar calendar 3 $alendar.getInstance>?

int yy 3 calendar.get>$alendar.B0AR?

int ** 3 calendar.get>$alendar.C,TE?

int dd 3 calendar.get>$alendar.DAB,!C,TE?

return new DatePickerDialog>getActivity>?1 this1 yy1 **1 dd?

F

public void onDate/et>DatePicker view1 int yy1 int **1 int dd? @

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 8/24

populate/etDate>yy1 **6#1 dd?

F

F

F

Date Picker ,utput

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 9/24

Date Picker Dialog and Ti*e Picker Dialog in Android use to select a date and ti*e1

as it will bepopup when you needed. )hile Ti*e Picker and Date Picker widget

occupy *ore space on screen. Dialogs are best way to solve this issue.

Dialog box used to show so*e infor*ation or pro*pt user to do so*e kind of

action. In Android1 we have *any different dialog types. 0ach has special function

that *ost users should be so*ewhat fa*iliar with it. In Pulse we will discuss below

dialog box in depth.

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 10/24

#. Dialog

&. Alert Dialog

'. Progress Dialog

H. Date Picker Dialog

9. Ti*e Picker Dialog

 

In this tutorial1 we will learn how to show Date Picker Dialog box and Ti*e Picker

Dialog =ox in Android Application. In this Application we will have si*ple screen

where we will have two text box >one for date and one for ti*e? and two buttons

>one for launching date picker and one for launching ti*e picker?. )hen user click

on button it will display respective dialog. )hen userselect date or ti*e1 it will be

visible on text box.

Date Picker Dialog

7et’s first see how to launch Date Picker Dialog. )e will use DatePickerDialog class1

we will use 9 argu*ent constructor1 listed below"

#. $ontext 1 it will be application context

&. $allback function1 used when user select date

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 11/24

'. int for Bear1 which will be visible as selected Bear on calendar

H. int for Conth1 which will be visible as selected *onth on Date Picker Dialog

9. int for Day1 which will be visible as selected day on Date Picker Dialog.8#

8&

8'

8H

89

8:

8

8J

8K

#8

###&

#'

#H

#9

#:

#

final $alendar c 3 $alendar.getInstance>?

*Bear 3 c.get>$alendar.B0AR?

*Conth 3 c.get>$alendar.C,TE?

*Day 3 c.get>$alendar.DAB,!C,TE?

 

DatePickerDialog dpd 3 new DatePickerDialog>this1

  new DatePickerDialog.,nDate/et7istener>? @

 

5,verride

  public void onDate/et>DatePicker view1 int year1

  int *onth,fBear1 int day,fConth? @  txtDate.setText>day,fConth 6 4L4

  6 >*onth,fBear 6 #? 6 4L4 6 year?

 

F

  F1 *Bear1 *Conth1 *Day?

dpd.show>?

 Date Picker Dialog 

Ti*e Picker Dialog

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 12/24

ow let’s see how to display Ti*e Picker Dialog in Android Application. )e will

useTi*ePickerDialog class1 we will use 9 argu*ent constructor1 listed below"

#. $ontext 1 it will be application context

&. $allback function1 used when user select date

'. int for Eour1 which will be visible as selected hour in Ti*e Picker Dialog

H. int for Cinutes1 which will be visible as selected *inutes in Ti*e Picker

Dialog

9. boolean value to set &H Eour for*at or not.8#

8&

8'

8H

89

8:

8

8J

8K

#8

Ti*ePickerDialog tpd 3 new Ti*ePickerDialog>this1

  new Ti*ePickerDialog.,nTi*e/et7istener>? @

 

5,verride

  public void onTi*e/et>Ti*ePicker view1 int hour,fDay1

  int *inute? @

  txtTi*e.setText>hour,fDay 6 4"4 6 *inute?

  F

  F1 *Eour1 *Cinute1 false?

tpd.show>?

 

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 13/24

Time Picker Dialog 

=elow is full source code with x*l file

$reate ew Android Pro%ect

#. $reate a new pro%ect and fill the re<uired details !ile⇒ ew⇒ Android

Pro%ect

&. ow open *ain.x*l >res-layout? and create si*ple (+I with two textbox and

two button for date and ti*e picker dialog.

8#

8&

8'8H

89

8:

8

8J

8K

#8

2Mx*l version34#.84 encoding34utfLJ4M;

27inear7ayout x*lns"android34http"--sche*as.android.co*-apk-res-android4

  android"orientation34vertical4 android"layoutwidth34fillparent4  android"layoutheight34fillparent4;

  2TextGiew android"text$olor34Nfff4 android"text/iOe34&8dp4

  android"layoutheight34wrapcontent4 android"id3456id-textGiew#4

  android"text34Pulse De*o4 android"layoutwidth34wrapcontent4

  android"layoutgravity34centerhoriOontal4 android"paddingTop34#8dp4

  android"padding=otto*34#8dp4;2-TextGiew;

  2TextGiew android"text$olor34Nfff4 android"text/iOe34&8dp4

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 14/24

##

#&

#'

#H#9

#:

#

#J

#K

&8

&#

&&

&'

&H

&9&:

&

&J

&K

'8

'#

'&

''

'H

'9

':

'

  android"layoutheight34wrapcontent4 android"id3456id-textGiew&4

  android"text34Date and Ti*e Picker Dialog4

android"layoutwidth34wrapcontent4

  android"layoutgravity34centerhoriOontal4 android"paddingTop349dp4

  android"padding=otto*34&9dp4;2-TextGiew;

  27inear7ayout android"layoutwidth34*atchparent4  android"layoutheight34wrapcontent4

android"id3456id-linear7ayout#4;

  20ditText android"layoutwidth34wrapcontent4

  android"layoutheight34wrapcontent4 android"layoutweight34#4

  android"id3456id-txtDate4;

  2re<uest!ocus;2-re<uest!ocus;

  2-0ditText;

  2=utton android"layoutheight34wrapcontent4

  android"layoutweight3484 android"id3456id-btn$alendar4

android"text34$alendar4

  android"layoutwidth34#88dp4;2-=utton;  2-7inear7ayout;

  27inear7ayout android"layoutwidth34*atchparent4

  android"layoutheight34wrapcontent4

android"id3456id-linear7ayout#4;

  20ditText android"layoutwidth34wrapcontent4

  android"layoutheight34wrapcontent4 android"layoutweight34#4

  android"id3456id-txtTi*e4;

  2re<uest!ocus;2-re<uest!ocus;

  2-0ditText;

  2=utton android"layoutheight34wrapcontent4

  android"layoutweight3484 android"id3456id-btnTi*ePicker4

  android"text34Ti*e Picker4 android"layoutwidth34#88dp4;2-=utton;

  2-7inear7ayout;

2-7inear7ayout;

'. ow let’s put Date Picker Dialog box and Ti*e Picker Dialog box code

in Activity class. )hen user click on button1 it should display respective Dialog box .

8#

8&

8'

8H89

8:

8

8J

8K

#8

##

package co*.vrs.pulse.datepickerdialog

 

i*port %ava.util.$alendar

 i*port android.app.Activity

i*port android.app.DatePickerDialog

i*port android.app.Ti*ePickerDialog

i*port android.os.=undle

i*port android.view.Giew

i*port android.view.Giew.,n$lick7istener

i*port android.widget.=utton

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 15/24

#&

#'

#H

#9

#:

##J

#K

&8

&#

&&

&'

&H

&9

&:

&

&J&K

'8

'#

'&

''

'H

'9

':

'

'J

'K

H8

H#

H&

H'

HH

H9

H:

H

HJ

HK

98

9#

9&

9'

9H

99

9:

9

i*port android.widget.DatePicker

i*port android.widget.0ditText

i*port android.widget.Ti*ePicker

 

public class PulseDatePickerDialogActivity extends Activity i*ple*ents

  ,n$lick7istener @ 

-- )idget (+I

  =utton btn$alendar1 btnTi*ePicker

  0ditText txtDate1 txtTi*e

 

-- Gariable for storing current date and ti*e

  private int *Bear1 *Conth1 *Day1 *Eour1 *Cinute

 

- $alled when the activity is first created. -

  5,verride

  public void on$reate>=undle savedInstance/tate? @  super.on$reate>savedInstance/tate?

  set$ontentGiew>R.layout.*ain?

 

btn$alendar 3 >=utton? findGiew=yId>R.id.btn$alendar?

  btnTi*ePicker 3 >=utton? findGiew=yId>R.id.btnTi*ePicker?

 

txtDate 3 >0ditText? findGiew=yId>R.id.txtDate?

  txtTi*e 3 >0ditText? findGiew=yId>R.id.txtTi*e?

 

btn$alendar.set,n$lick7istener>this?

  btnTi*ePicker.set,n$lick7istener>this?

  F

 

5,verride

  public void on$lick>Giew v? @

 

if >v 33 btn$alendar? @

 

-- Process to get $urrent Date

  final $alendar c 3 $alendar.getInstance>?

  *Bear 3 c.get>$alendar.B0AR?

  *Conth 3 c.get>$alendar.C,TE?

  *Day 3 c.get>$alendar.DAB,!C,TE?

 

-- 7aunch Date Picker Dialog

  DatePickerDialog dpd 3 new DatePickerDialog>this1

  new DatePickerDialog.,nDate/et7istener>? @

 

5,verride

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 16/24

9J

9K

:8

:#

:&

:':H

:9

::

:

:J

:K

8

#

&

'

H9

:

J

K

J8

J#

J&

J'

JH

J9

J:

J

JJ

JK

  public void onDate/et>DatePicker view1 int year1

  int *onth,fBear1 int day,fConth? @

  -- Display /elected date in textbox

  txtDate.setText>day,fConth 6 4L4

  6 >*onth,fBear 6 #? 6 4L4 6 year?

  F

  F1 *Bear1 *Conth1 *Day?

  dpd.show>?

  F

  if >v 33 btnTi*ePicker? @

 

-- Process to get $urrent Ti*e

  final $alendar c 3 $alendar.getInstance>?

  *Eour 3 c.get>$alendar.E,+R,!DAB?

  *Cinute 3 c.get>$alendar.CI+T0?

  -- 7aunch Ti*e Picker Dialog

  Ti*ePickerDialog tpd 3 new Ti*ePickerDialog>this1

  new Ti*ePickerDialog.,nTi*e/et7istener>? @

 

5,verride

  public void onTi*e/et>Ti*ePicker view1 int hour,fDay1

  int *inute? @

  -- Display /elected ti*e in textbox

  txtTi*e.setText>hour,fDay 6 4"4 6 *inute?

  F

  F1 *Eour1 *Cinute1 false?

  tpd.show>?

  F

  F

F

H. ow let’s execute application.

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 17/24

 Date and Time Picker Screen Click on button to display respective dialog box.

 Date Picker Dialog will be visible when you click on calendar button

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 18/24

Time Picker Dialog will be visible when you click on Time Button

Android otifications

In this tutorial we shall learn about different types of notifications in android.

!ollowing are the three types of android notifications1

#. Toast otification  Q /hows *essage that fades away after a few seconds.

>=ackground type also?

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 19/24

&. /tatus otification Q /hows notification *essage and displayed till user

action. >=ackground type also?

'. Dialog otification Q $o*es out of an active Activity.

>=ackground type? Q is result of so*e background /ervice event that *ay not berelated to current activity. That is1 we can use this notification type in /ervice also1

added to Activity.

#. Toast otification

This type of notification will be used when there is no need of user interaction on

seeing this *essage. This *essage occupies a rectangular box which will fade in and

fade out after so*e ti*e. The siOe of the box depends on the *essage content.

!or exa*ple1 when user creates an event using calendar application it will notify the

user as 0vent $reatedS after the create action is co*pleted. Refer the i*age.

Toast notification is best suited for one way infor*ation to the use where we don’t

expect any response. Toast *essage does not stop or disturb the current activity1 %ust

the *essage is shown in parallel.

0xa*ple for Android Toast otification

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 20/24

Toast notification can be created fro* an Activity or /ervice. Toast is the class to be

used as below1

$ontext app$ontext 3 getApplication$ontext>?

Toast *ailCessage 3 Toast.*akeText>app$ontext1 0*ail Received.S1 Toast.

70(TE7,(?

*ailCessage.set(ravity>(ravity.T,P1 81 8? --optional

*ailCessage.show>?

• duration Q can be either 70(TE/E,RT or 70(TE7,(

• set(ravity Q is used to position the *essage in screen. =y default it shows at

botto* centered. !irst para*eter is (ravity a constant identifying location in

container broadly like T,P =,TT,C 70!T U 1 second and third

para*eters are x1 yLoffset.

&. /tatus otification

/tatus notification is used to display rich notification infor*ation especially fro* a

>background? /ervice where user can interact. It will be shown as an icon with an

alert in the status bar. )hen the user pulls down the status bar1 the list of

notification will be in the notification window.

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 21/24

!or exa*ple when a /C/ *essage is received a *essage icon is shown in the statusbar. ,n pull down1 the list of unread *essages will be shown in the notification

window.

0xa*ple shown in i*age" ,n snooOing the alar*1 corresponding notification will be

will be sent to the status bar with notification icon. A ticker *essage will be shown

next to the icon for so*e ti*e. In the i*age the clock icon represents the notification

about the snooOe event and the ticker *essage is shown next to the clock icon.

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 22/24

#. $reate a si*ple notification with an icon alert. Alert can be a ticker text

*essage or sound or vibration or flashlight.

&. Associate notification *essage with details shown on *essage expansion to

activity-intent. otification *essage can be a list and it is identified using a

uni<ue identifier. 0xisting *essages can be updated too.

'. Register the notification *essage with notification *anager.

otificationCanager is a syste* service that *anages all the notifications.

0xa*ple for Android /tatus otification

--part # Q notification icon alertint icon 3 R.drawable.notificationicon

-- a ticker text *essage or sound or vibration or flashlight can be used for

alert$har/e<uence ticker 3 EiS

long showAt 3 /yste*.currentti*eCillis>?

--i**ediatelyotification notification 3 new otification>icon1 ticker1 showAt?

--part & Q associate notification *essage with details shown on *essage expansion to

activity-

intent$har/e<uence notificationTitle 3 4otification"4

$har/e<uence notificationCessage 3 4/C/ Received.4

Intent intent 3 new Intent>this1 Activity.class?

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 23/24

PendingIntent ob%PendingIntent 3 PendingIntent.getActivity>this1 81 intent1 8?

$ontext ctx 3 getApplication$ontext>?

notification.set7atest0ventInfo>ctx1 notificationTitle1 notificationCessage1

ob%PendingIntent?

--part ' Q register the notification *essage with notification *anagerprivate static

final int notificationIdentifier 3 #8#

--an uni<ue nu*ber set by developer to identify a notification1 using this notification

can be updated-

replacedotificationCanager notificationCanager 3

>otificationCanager?get/yste*/ervice>$ontext.,TI!I$ATI,/0RGI$0?noti

ficationCanager.notify>notificationIdentifier1 ob%otification?

otification Alerts

/ound"

notification.defaults 3 otification.D0!A+7T/,+D

--use the above default or set custo* valuse as below

notification.sound 3 +ri.parse>4file"---sdcard-notification-roboda.*p'4?

Gibration"

notification.defaults 3 otification.D0!A+7TGI=RAT0

--use the above default or set custo* valuse as below

longVW vibrate 3 @81&881#881&88Fnotification.vibrate 3 vibrate

!lash 7ight"

notification.defaults 3 otification.D0!A+7T7I(ET/--use the above default or

set custo* valuse as below

notification.ledAR(= 3 8xffff8888--red color

notification.led,nC/ 3 H88

8/11/2019 for 5th semester

http://slidepdf.com/reader/full/for-5th-semester 24/24

notification.led,ffC/ 3 988

notification.flags 3 otification.!7A(/E,)7I(ET/

'. Dialog otification

Dialog notification is not an exact type of notification. Dialog is co**on in window

based +Is. A s*all panel that appears on top of an active window and user will not

be able to do any other activity other than acting on the dialog. This is sa*e here

too. !ro* an android Activity a dialog will be launched and the Activity loses focus.

+ser should give input and work on the dialog. ,nce the user action is co*pleted

the dialog is closed. Dialog has *any uses and one a*ong the* is notification to

user.

!or exa*ple we can show a progress bar which is a notification to user. )e can ask

for confir*ation yes’ or no’ fro* user and this is a type of notification. !or all

these purposes dialog notification is used. There are *any types of dialogs available

such as1

• AlertDialog

• ProgressDialog

• DatePickerDialog

• Ti*ePickerDialog