SlideShare a Scribd company logo
USER INTERFACE 
1 
Android application development
USER INTERFACE 
2 
The Android Widget Toolbox 
1. TextView 
2. EditText 
3. Spinner 
4. Button 
5. CheckBox 
6. RadioButton 
7. DatePicker 
8. TimePicker 
Layouts 
1. Frame Layout 
2. Linear Layout 
3. Relative Layout 
4. Table Layout 
5. Absolute Layout 
6. Grid Layout 
7. Tab Layout
USER INTERFACE 
Android Widget Toolbox 
Date Picker Tutorial 
To provide a widget for selecting a date, use the DatePicker widget, which allows 
the user to 
select the month, day, and year, in a familiar interface. 
1. We’ll create a DatePickerDialog, which presents the date picker in a floating 
3 
dialog box at the press of a button. 
2. When the date is set by the user, a TextView will update with the new date.
USER INTERFACE 
4 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
1. Start a new project named HelloDatePicker. 
2. Open the res/layout/main.xml file and insert the following: 
This creates a basic LinearLayout with a TextView that will display the date and 
a Button that will open the DatePickerDialog.
USER INTERFACE 
5 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
3. Open HelloDatePicker.java 
4. add the following members to the class
USER INTERFACE 
6 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
5. Now we add following code in onCreate() method to capture View 
elements and add listener to the Button. 
6. Now we show the dialog in button action
USER INTERFACE 
7 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
1. First, the content is set to the main.xml layout. 
2. Then the TextView and Button elements are captured from the layout with 
findViewById(int). 
3. A new View.OnClickListener is created for the Button, so that when it is clicked, 
it will call showDialog(int), passing the unique integer ID for the date picker 
dialog. 
4. Using showDialog(int) allows the Activity to manage the life-cycle of the dialog 
and will call the onCreateDialog(int) callback method to request the Dialog that 
should be displayed.
USER INTERFACE 
8 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
5. Now we need to add a DateSetListener which will invoke when user selects a date
USER INTERFACE 
9 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
6. Now we see
USER INTERFACE 
10 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
6. Now we add this method to show the date in display TextView
USER INTERFACE 
11 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
7. We set the selected date in DatePicker and get it from callback
USER INTERFACE 
12 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
8. We add the following code to initiate with current date
USER INTERFACE 
13 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
2. onCreate
USER INTERFACE 
14 
Android Widget Toolbox 
Date Picker Tutorial (Cont.) 
3. callback method for creating dialog 
4. Initialize a new 
DatePickerDialog.OnDateSetListen 
er 
for when the user has set the date 
(by clicking the "Set" button)
USER INTERFACE 
15 
Android Widget Toolbox 
Date Picker Tutorial (Cont.)
USER INTERFACE 
Android Widget Toolbox 
Time Picker Tutorial 
To provide a widget for selecting a date, use the TimePicker widget, which allows 
the user to 
select the hour and minute in a familiar interface. 
1. We’ll create a TimePickerDialog, which presents the date picker in a floating 
16 
dialog box at the press of a button. 
2. When the time is set by the user, a TextView will update with the new time. 
Do it yourself
USER INTERFACE 
17 
Android Widget Toolbox 
Time Picker Tutorial (Contd.) 
Hints:
USER INTERFACE 
18 
Android Widget Toolbox 
Spinner Tutorial 
Spinner is a widget similar to a drop-down list for selecting items. 
1. In this tutorial, you'll create a simple spinner widget that displays a list of planets. 
2. When one is selected, a toast message will display the selected item.
USER INTERFACE 
19 
Android Widget Toolbox 
Spinner Tutorial (Contd.) 
1. Start a new project named HelloSpinner 
2. Open the res/layout/main.xml file and insert the following: 
Notice that the TextView's android:text attribute and the Spinner's android:prompt attribute 
both reference the same string resource. This text behaves as a title for the widget. When 
applied to the Spinner, the title text will appear in the selection dialog that appears upon 
selecting the widget.
USER INTERFACE 
20 
Android Widget Toolbox 
Spinner Tutorial (Contd.) 
3. Create a strings.xml file in res/values/ and edit the file to look like this: 
The <string> element defines the title string referenced by the TextView and Spinner in 
the layout above. The <string-array element defines the list of strings that will be displayed 
as the list in the Spinner widget.
USER INTERFACE 
21 
Android Widget Toolbox 
Spinner Tutorial (Contd.) 
4. Now open the HelloSpinner.java file and insert the following code for 
the onCreate() method: 
a. After the main.xml layout is set as the content view, the Spinner widget is captured from 
the layout with findViewById(int). 
b. The createFromResource() method then creates a new ArrayAdapter, which binds each item 
in the string array to the initial appearance for the Spinner 
c. TheR.array.planets_array ID references the string-array defined above and the 
android.R.layout.simple_spinner_item ID references a layout for the standard spinner 
appearance, defined by the platform.
USER INTERFACE 
22 
Android Widget Toolbox 
Spinner Tutorial (Contd.) 
5. Now create a nested class that implements AdapterView.OnItemSelectedListener. 
This will provide a callback method that will notify your application when an item has 
been selected from the Spinner. Here's what this class should look like 
The AdapterView.OnItemSelectedListener requires the onItemSelected() and 
onNothingSelected() callback methods.
USER INTERFACE 
23 
Android Widget Toolbox 
Spinner Tutorial (Contd.) 
6. Now the MyOnItemSelectedListener needs to be applied to the Spinner. 
Go back to the onCreate() method and add the following line to the end:
USER INTERFACE 
24 
Android Widget Toolbox 
Spinner Tutorial (Contd.) 
Run the application
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial 
This tutorial introduces a variety of widgets that are useful when creating forms, 
25 
1. image buttons, 
2. text fields, 
3. checkboxes, 
4. radio buttons, 
5. Toggle buttons, 
6. Rating bar
USER INTERFACE 
26 
Android Widget Toolbox 
Form Elements Tutorial (Contd.) 
1. Start a new project named HelloFormStuff. 
2. Create a basic LinearLayout in res/layout/main.xml 
3. onCreate()
USER INTERFACE 
We’ll create an image button with 3 states Using the Button widget and an XML file 
27 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Custom Button 
Normal Focused Pressed 
that defines three different images to use 
for the different button states. When the 
button is pressed, a short message will be 
displayed. 
1. Copy the images on the right into the res/drawable/ directory of your project. These will 
be used for the different button states. 
2. Create a new file in the res/drawable/ directory named android_button.xml. 
Insert the following XML: 
This defines a single drawable resource, which will change its image based on the 
current state of the button.
USER INTERFACE 
28 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Custom Button 
3. Open the res/layout/main.xml file and add the Button element: 
The android:background attribute specifies the drawable 
resource to use for the button background (which, when saved 
at res/drawable/android.xml, is referenced as @drawable/android). This replaces the 
normal background image used for buttons throughout the system. In order for the 
drawable to change its image based on the button state, the image must be applied to 
the background
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Custom Button 
4. o make the button do something when pressed, add the following code at the end of the 
onCreate() method: 
29 
Normal Pressed After Pressed
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Edit Text 
In this section, you will create a text field for user input, using the EditText widget. Once text 
has been entered into the field, the "Enter" key will display the text in a toast message. 
1. Open the res/layout/main.xml file and add the EditText element (inside the LinearLayout): 
30 
2.
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Edit Text 
2. To do something with the text that the user types, add the following code to the 
end of the onCreate() method: 
31
USER INTERFACE 
32 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Edit Text
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Check Box 
In this section, you will create a checkbox for selecting items, using the CheckBox widget. 
When the checkbox is pressed, a toast message will indicate the current state of the checkbox. 
1. Open the res/layout/main.xml file and add the CheckBox element (inside the LinearLayout): 
33
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Check Box 
2. To do something when the state is changed, add the following code to the end 
of the onCreate() method: 
34
USER INTERFACE 
35 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Check Box
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Radio Button 
In this section, you will create two mutually-exclusive radio buttons (enabling one disables the 
other), using the RadioGroup and RadioButton widgets. 
When either radio button is pressed, a toast message will be displayed. 
1. Open the res/layout/main.xml file and add two RadioButtons, nested in a RadioGroup 
(inside the LinearLayout): 
It's important that the RadioButtons are grouped together by the RadioGroup element so 
that no more than one can be selected at a time. This logic is automatically handled by the 
Android system. When one RadioButton within a group is selected, all others are 
automatically deselected 
36
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Radio Button 
2. To do something when each RadioButton is selected, you need 
an View.OnClickListener. In this case, you want the listener to be re-usable, so add 
the following code to create a new member in the HelloFormStuff Activity 
37 
3. Now, at the bottom of the onCreate() method, add the following:
USER INTERFACE 
38 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Radio Button
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Toggle Button 
In this section, you'll create a button used specifically for toggling between two states, using 
the ToggleButton widget. This widget is an excellent alternative to radio buttons if you have 
two simple states that are mutually exclusive ("on" and "off", for example). 
1. Open the res/layout/main.xml file and add the ToggleButton element (inside the 
LinearLayout): 
39
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Toggle Button 
2. To do something when the state is changed, add the following code to the end of the 
onCreate() method: 
This captures the ToggleButton element from the layout, then adds an View.OnClickListener. 
The View.OnClickListener must implement the onClick(View) callback method, which defines 
the action to perform when the button is clicked. In this example, the callback method checks 
the new state of the button, then shows a Toast message that indicates the current state. 
40
USER INTERFACE 
41 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Toggle Button
USER INTERFACE 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Rating Bar 
In this section, you'll create a widget that allows the user to provide a rating, with the 
RatingBar widget. 
1. Open the res/layout/main.xml file and add the RatingBar element (inside the 
LinearLayout): 
2. To do something when a new rating has been set, add the following code to 
42 
the end of the onCreate() method:
USER INTERFACE 
43 
Android Widget Toolbox 
Form Elements Tutorial (Contd.)- Rating Bar
Thank You 
44

More Related Content

What's hot (20)

PPTX
Broadcast Receiver
nationalmobileapps
 
PDF
Introduction to Android Development
Aly Abdelkareem
 
PDF
AndroidManifest
Ahsanul Karim
 
PDF
Introduction to fragments in android
Prawesh Shrestha
 
PPTX
Introduction to android
zeelpatel0504
 
PPT
Android application structure
Alexey Ustenko
 
PDF
Android resource
Krazy Koder
 
PPTX
Components of .NET Framework
Roshith S Pai
 
PPT
Mobile Application Development With Android
guest213e237
 
PDF
Android activities & views
ma-polimi
 
PDF
Android Location and Maps
Jussi Pohjolainen
 
PPTX
Android application development ppt
Gautam Kumar
 
PPT
SQLITE Android
Sourabh Sahu
 
PPT
Introduction to Android
Ranjith Kumar
 
PPTX
Content provider in_android
PRITI TELMORE
 
PPTX
Android share preferences
Ajay Panchal
 
PPTX
Basic android-ppt
Srijib Roy
 
PPTX
Android Widget
ELLURU Kalyan
 
PDF
[Android] Widget Event Handling
Nikmesoft Ltd
 
PPT
Data Storage In Android
Aakash Ugale
 
Broadcast Receiver
nationalmobileapps
 
Introduction to Android Development
Aly Abdelkareem
 
AndroidManifest
Ahsanul Karim
 
Introduction to fragments in android
Prawesh Shrestha
 
Introduction to android
zeelpatel0504
 
Android application structure
Alexey Ustenko
 
Android resource
Krazy Koder
 
Components of .NET Framework
Roshith S Pai
 
Mobile Application Development With Android
guest213e237
 
Android activities & views
ma-polimi
 
Android Location and Maps
Jussi Pohjolainen
 
Android application development ppt
Gautam Kumar
 
SQLITE Android
Sourabh Sahu
 
Introduction to Android
Ranjith Kumar
 
Content provider in_android
PRITI TELMORE
 
Android share preferences
Ajay Panchal
 
Basic android-ppt
Srijib Roy
 
Android Widget
ELLURU Kalyan
 
[Android] Widget Event Handling
Nikmesoft Ltd
 
Data Storage In Android
Aakash Ugale
 

Similar to Android UI (20)

PPTX
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
Ahsanul Karim
 
PPT
Day 4: Android: UI Widgets
Ahsanul Karim
 
PPT
Day 5: Android User Interface [View Widgets]
Ahsanul Karim
 
PPT
Android User Interface: Basic Form Widgets
Ahsanul Karim
 
PPTX
Notes Unit4.pptx
MIT Autonomous Aurangabad
 
PPTX
Introduction to android
Shrijan Tiwari
 
PDF
Android App Development 03 : Widget &amp; UI
Anuchit Chalothorn
 
DOCX
UIAutomator
Sandip Ganguli
 
PDF
Intake 38 9
Mahmoud Ouf
 
PDF
Intake 37 9
Mahmoud Ouf
 
DOCX
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docx
scroghamtressie
 
PPT
Android Bootcamp Tanzania:understanding ui in_android
Denis Minja
 
PPT
Android
San Bunna
 
PPT
Android Application Development Programming
Kongu Engineering College, Perundurai, Erode
 
PDF
Android session 3
Ahesanali Suthar
 
PPTX
GUI components in Java
kirupasuchi1996
 
PPTX
lec 9.pptx
MaheshSharan
 
PPTX
Notification android
ksheerod shri toshniwal
 
DOCX
Android action bar and notifications-chapter16
Dr. Ramkumar Lakshminarayanan
 
DOC
ANDROID LAB MANUAL.doc
Palakjaiswal43
 
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
Ahsanul Karim
 
Day 4: Android: UI Widgets
Ahsanul Karim
 
Day 5: Android User Interface [View Widgets]
Ahsanul Karim
 
Android User Interface: Basic Form Widgets
Ahsanul Karim
 
Notes Unit4.pptx
MIT Autonomous Aurangabad
 
Introduction to android
Shrijan Tiwari
 
Android App Development 03 : Widget &amp; UI
Anuchit Chalothorn
 
UIAutomator
Sandip Ganguli
 
Intake 38 9
Mahmoud Ouf
 
Intake 37 9
Mahmoud Ouf
 
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docx
scroghamtressie
 
Android Bootcamp Tanzania:understanding ui in_android
Denis Minja
 
Android
San Bunna
 
Android Application Development Programming
Kongu Engineering College, Perundurai, Erode
 
Android session 3
Ahesanali Suthar
 
GUI components in Java
kirupasuchi1996
 
lec 9.pptx
MaheshSharan
 
Notification android
ksheerod shri toshniwal
 
Android action bar and notifications-chapter16
Dr. Ramkumar Lakshminarayanan
 
ANDROID LAB MANUAL.doc
Palakjaiswal43
 
Ad

More from nationalmobileapps (16)

PPTX
Fragment
nationalmobileapps
 
PPTX
Android Location Api
nationalmobileapps
 
PPTX
Play Store
nationalmobileapps
 
PPT
GCM (push notification)
nationalmobileapps
 
PPTX
Android Sensor
nationalmobileapps
 
PPTX
Ad Mob
nationalmobileapps
 
PPTX
Google Map V2
nationalmobileapps
 
PPTX
Database
nationalmobileapps
 
PPTX
Activity & Shared Preference
nationalmobileapps
 
PPTX
Intent
nationalmobileapps
 
PPTX
Support Multiple Screen
nationalmobileapps
 
PPT
Listview
nationalmobileapps
 
PPTX
Event Handling
nationalmobileapps
 
PPTX
Project anatomy & hello world
nationalmobileapps
 
PPTX
Mobile Application capacity building activities
nationalmobileapps
 
PPTX
Future of Smart phone in Bangladesh
nationalmobileapps
 
Android Location Api
nationalmobileapps
 
Play Store
nationalmobileapps
 
GCM (push notification)
nationalmobileapps
 
Android Sensor
nationalmobileapps
 
Google Map V2
nationalmobileapps
 
Activity & Shared Preference
nationalmobileapps
 
Support Multiple Screen
nationalmobileapps
 
Event Handling
nationalmobileapps
 
Project anatomy & hello world
nationalmobileapps
 
Mobile Application capacity building activities
nationalmobileapps
 
Future of Smart phone in Bangladesh
nationalmobileapps
 
Ad

Recently uploaded (20)

PDF
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PDF
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
PDF
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PPTX
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PPTX
GRADE-3-PPT-EVE-2025-ENG-Q1-LESSON-1.pptx
EveOdrapngimapNarido
 
PDF
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PDF
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PDF
Horarios de distribución de agua en julio
pegazohn1978
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PPTX
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PPTX
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
Exploring the Different Types of Experimental Research
Thelma Villaflores
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
The Constitution Review Committee (CRC) has released an updated schedule for ...
nservice241
 
Geographical Diversity of India 100 Mcq.pdf/ 7th class new ncert /Social/Samy...
Sandeep Swamy
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
GRADE-3-PPT-EVE-2025-ENG-Q1-LESSON-1.pptx
EveOdrapngimapNarido
 
CONCURSO DE POESIA “POETUFAS – PASSOS SUAVES PELO VERSO.pdf
Colégio Santa Teresinha
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
QNL June Edition hosted by Pragya the official Quiz Club of the University of...
Pragya - UEM Kolkata Quiz Club
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
Horarios de distribución de agua en julio
pegazohn1978
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
QUARTER 1 WEEK 2 PLOT, POV AND CONFLICTS
KynaParas
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 

Android UI

  • 1. USER INTERFACE 1 Android application development
  • 2. USER INTERFACE 2 The Android Widget Toolbox 1. TextView 2. EditText 3. Spinner 4. Button 5. CheckBox 6. RadioButton 7. DatePicker 8. TimePicker Layouts 1. Frame Layout 2. Linear Layout 3. Relative Layout 4. Table Layout 5. Absolute Layout 6. Grid Layout 7. Tab Layout
  • 3. USER INTERFACE Android Widget Toolbox Date Picker Tutorial To provide a widget for selecting a date, use the DatePicker widget, which allows the user to select the month, day, and year, in a familiar interface. 1. We’ll create a DatePickerDialog, which presents the date picker in a floating 3 dialog box at the press of a button. 2. When the date is set by the user, a TextView will update with the new date.
  • 4. USER INTERFACE 4 Android Widget Toolbox Date Picker Tutorial (Cont.) 1. Start a new project named HelloDatePicker. 2. Open the res/layout/main.xml file and insert the following: This creates a basic LinearLayout with a TextView that will display the date and a Button that will open the DatePickerDialog.
  • 5. USER INTERFACE 5 Android Widget Toolbox Date Picker Tutorial (Cont.) 3. Open HelloDatePicker.java 4. add the following members to the class
  • 6. USER INTERFACE 6 Android Widget Toolbox Date Picker Tutorial (Cont.) 5. Now we add following code in onCreate() method to capture View elements and add listener to the Button. 6. Now we show the dialog in button action
  • 7. USER INTERFACE 7 Android Widget Toolbox Date Picker Tutorial (Cont.) 1. First, the content is set to the main.xml layout. 2. Then the TextView and Button elements are captured from the layout with findViewById(int). 3. A new View.OnClickListener is created for the Button, so that when it is clicked, it will call showDialog(int), passing the unique integer ID for the date picker dialog. 4. Using showDialog(int) allows the Activity to manage the life-cycle of the dialog and will call the onCreateDialog(int) callback method to request the Dialog that should be displayed.
  • 8. USER INTERFACE 8 Android Widget Toolbox Date Picker Tutorial (Cont.) 5. Now we need to add a DateSetListener which will invoke when user selects a date
  • 9. USER INTERFACE 9 Android Widget Toolbox Date Picker Tutorial (Cont.) 6. Now we see
  • 10. USER INTERFACE 10 Android Widget Toolbox Date Picker Tutorial (Cont.) 6. Now we add this method to show the date in display TextView
  • 11. USER INTERFACE 11 Android Widget Toolbox Date Picker Tutorial (Cont.) 7. We set the selected date in DatePicker and get it from callback
  • 12. USER INTERFACE 12 Android Widget Toolbox Date Picker Tutorial (Cont.) 8. We add the following code to initiate with current date
  • 13. USER INTERFACE 13 Android Widget Toolbox Date Picker Tutorial (Cont.) 2. onCreate
  • 14. USER INTERFACE 14 Android Widget Toolbox Date Picker Tutorial (Cont.) 3. callback method for creating dialog 4. Initialize a new DatePickerDialog.OnDateSetListen er for when the user has set the date (by clicking the "Set" button)
  • 15. USER INTERFACE 15 Android Widget Toolbox Date Picker Tutorial (Cont.)
  • 16. USER INTERFACE Android Widget Toolbox Time Picker Tutorial To provide a widget for selecting a date, use the TimePicker widget, which allows the user to select the hour and minute in a familiar interface. 1. We’ll create a TimePickerDialog, which presents the date picker in a floating 16 dialog box at the press of a button. 2. When the time is set by the user, a TextView will update with the new time. Do it yourself
  • 17. USER INTERFACE 17 Android Widget Toolbox Time Picker Tutorial (Contd.) Hints:
  • 18. USER INTERFACE 18 Android Widget Toolbox Spinner Tutorial Spinner is a widget similar to a drop-down list for selecting items. 1. In this tutorial, you'll create a simple spinner widget that displays a list of planets. 2. When one is selected, a toast message will display the selected item.
  • 19. USER INTERFACE 19 Android Widget Toolbox Spinner Tutorial (Contd.) 1. Start a new project named HelloSpinner 2. Open the res/layout/main.xml file and insert the following: Notice that the TextView's android:text attribute and the Spinner's android:prompt attribute both reference the same string resource. This text behaves as a title for the widget. When applied to the Spinner, the title text will appear in the selection dialog that appears upon selecting the widget.
  • 20. USER INTERFACE 20 Android Widget Toolbox Spinner Tutorial (Contd.) 3. Create a strings.xml file in res/values/ and edit the file to look like this: The <string> element defines the title string referenced by the TextView and Spinner in the layout above. The <string-array element defines the list of strings that will be displayed as the list in the Spinner widget.
  • 21. USER INTERFACE 21 Android Widget Toolbox Spinner Tutorial (Contd.) 4. Now open the HelloSpinner.java file and insert the following code for the onCreate() method: a. After the main.xml layout is set as the content view, the Spinner widget is captured from the layout with findViewById(int). b. The createFromResource() method then creates a new ArrayAdapter, which binds each item in the string array to the initial appearance for the Spinner c. TheR.array.planets_array ID references the string-array defined above and the android.R.layout.simple_spinner_item ID references a layout for the standard spinner appearance, defined by the platform.
  • 22. USER INTERFACE 22 Android Widget Toolbox Spinner Tutorial (Contd.) 5. Now create a nested class that implements AdapterView.OnItemSelectedListener. This will provide a callback method that will notify your application when an item has been selected from the Spinner. Here's what this class should look like The AdapterView.OnItemSelectedListener requires the onItemSelected() and onNothingSelected() callback methods.
  • 23. USER INTERFACE 23 Android Widget Toolbox Spinner Tutorial (Contd.) 6. Now the MyOnItemSelectedListener needs to be applied to the Spinner. Go back to the onCreate() method and add the following line to the end:
  • 24. USER INTERFACE 24 Android Widget Toolbox Spinner Tutorial (Contd.) Run the application
  • 25. USER INTERFACE Android Widget Toolbox Form Elements Tutorial This tutorial introduces a variety of widgets that are useful when creating forms, 25 1. image buttons, 2. text fields, 3. checkboxes, 4. radio buttons, 5. Toggle buttons, 6. Rating bar
  • 26. USER INTERFACE 26 Android Widget Toolbox Form Elements Tutorial (Contd.) 1. Start a new project named HelloFormStuff. 2. Create a basic LinearLayout in res/layout/main.xml 3. onCreate()
  • 27. USER INTERFACE We’ll create an image button with 3 states Using the Button widget and an XML file 27 Android Widget Toolbox Form Elements Tutorial (Contd.)- Custom Button Normal Focused Pressed that defines three different images to use for the different button states. When the button is pressed, a short message will be displayed. 1. Copy the images on the right into the res/drawable/ directory of your project. These will be used for the different button states. 2. Create a new file in the res/drawable/ directory named android_button.xml. Insert the following XML: This defines a single drawable resource, which will change its image based on the current state of the button.
  • 28. USER INTERFACE 28 Android Widget Toolbox Form Elements Tutorial (Contd.)- Custom Button 3. Open the res/layout/main.xml file and add the Button element: The android:background attribute specifies the drawable resource to use for the button background (which, when saved at res/drawable/android.xml, is referenced as @drawable/android). This replaces the normal background image used for buttons throughout the system. In order for the drawable to change its image based on the button state, the image must be applied to the background
  • 29. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Custom Button 4. o make the button do something when pressed, add the following code at the end of the onCreate() method: 29 Normal Pressed After Pressed
  • 30. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Edit Text In this section, you will create a text field for user input, using the EditText widget. Once text has been entered into the field, the "Enter" key will display the text in a toast message. 1. Open the res/layout/main.xml file and add the EditText element (inside the LinearLayout): 30 2.
  • 31. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Edit Text 2. To do something with the text that the user types, add the following code to the end of the onCreate() method: 31
  • 32. USER INTERFACE 32 Android Widget Toolbox Form Elements Tutorial (Contd.)- Edit Text
  • 33. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Check Box In this section, you will create a checkbox for selecting items, using the CheckBox widget. When the checkbox is pressed, a toast message will indicate the current state of the checkbox. 1. Open the res/layout/main.xml file and add the CheckBox element (inside the LinearLayout): 33
  • 34. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Check Box 2. To do something when the state is changed, add the following code to the end of the onCreate() method: 34
  • 35. USER INTERFACE 35 Android Widget Toolbox Form Elements Tutorial (Contd.)- Check Box
  • 36. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Radio Button In this section, you will create two mutually-exclusive radio buttons (enabling one disables the other), using the RadioGroup and RadioButton widgets. When either radio button is pressed, a toast message will be displayed. 1. Open the res/layout/main.xml file and add two RadioButtons, nested in a RadioGroup (inside the LinearLayout): It's important that the RadioButtons are grouped together by the RadioGroup element so that no more than one can be selected at a time. This logic is automatically handled by the Android system. When one RadioButton within a group is selected, all others are automatically deselected 36
  • 37. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Radio Button 2. To do something when each RadioButton is selected, you need an View.OnClickListener. In this case, you want the listener to be re-usable, so add the following code to create a new member in the HelloFormStuff Activity 37 3. Now, at the bottom of the onCreate() method, add the following:
  • 38. USER INTERFACE 38 Android Widget Toolbox Form Elements Tutorial (Contd.)- Radio Button
  • 39. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Toggle Button In this section, you'll create a button used specifically for toggling between two states, using the ToggleButton widget. This widget is an excellent alternative to radio buttons if you have two simple states that are mutually exclusive ("on" and "off", for example). 1. Open the res/layout/main.xml file and add the ToggleButton element (inside the LinearLayout): 39
  • 40. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Toggle Button 2. To do something when the state is changed, add the following code to the end of the onCreate() method: This captures the ToggleButton element from the layout, then adds an View.OnClickListener. The View.OnClickListener must implement the onClick(View) callback method, which defines the action to perform when the button is clicked. In this example, the callback method checks the new state of the button, then shows a Toast message that indicates the current state. 40
  • 41. USER INTERFACE 41 Android Widget Toolbox Form Elements Tutorial (Contd.)- Toggle Button
  • 42. USER INTERFACE Android Widget Toolbox Form Elements Tutorial (Contd.)- Rating Bar In this section, you'll create a widget that allows the user to provide a rating, with the RatingBar widget. 1. Open the res/layout/main.xml file and add the RatingBar element (inside the LinearLayout): 2. To do something when a new rating has been set, add the following code to 42 the end of the onCreate() method:
  • 43. USER INTERFACE 43 Android Widget Toolbox Form Elements Tutorial (Contd.)- Rating Bar