InterviewSolution
Saved Bookmarks
| 1. |
Name the four main dialog boxes used in Android Applications? |
|
Answer» NAME the four main dialog boxes used in Android Applications? Below are the four main dialog boxes used in Android Applications. (1)AlertDialog:-In android application it works like an alert dialog box which can have 0-3 buttons and a list of SELECTABLE elements. (2)ProgressDialog:-In android application progress dialog bar is called EXTENSION to AlertDialog. And we can also add buttons to it. In extension it will shows a progress wheel or a progress bar. (3)DatePickerDialog:-In android application this Date Picker Dialog is used for selecting a date by the user. (4)TimePickerDialog:-In android application this TIME Picker Dialog is used for selecting time by the user. |
|