SlideShare ist ein Scribd-Unternehmen logo
1 von 44
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

Weitere ähnliche Inhalte

Was ist angesagt?

Android ui layout
Android ui layoutAndroid ui layout
Android ui layout
Krazy Koder
 
Android activity
Android activityAndroid activity
Android activity
Krazy Koder
 
android activity
android activityandroid activity
android activity
Deepa Rani
 
Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)
Ahsanul Karim
 
android layouts
android layoutsandroid layouts
android layouts
Deepa Rani
 
Android datastorage
Android datastorageAndroid datastorage
Android datastorage
Krazy Koder
 

Was ist angesagt? (20)

SQLITE Android
SQLITE AndroidSQLITE Android
SQLITE Android
 
Introduction to Android Development
Introduction to Android DevelopmentIntroduction to Android Development
Introduction to Android Development
 
Introduction to fragments in android
Introduction to fragments in androidIntroduction to fragments in android
Introduction to fragments in android
 
AndroidManifest
AndroidManifestAndroidManifest
AndroidManifest
 
Layouts in android
Layouts in androidLayouts in android
Layouts in android
 
Android ui layout
Android ui layoutAndroid ui layout
Android ui layout
 
Android Programming Basics
Android Programming BasicsAndroid Programming Basics
Android Programming Basics
 
Activity lifecycle
Activity lifecycleActivity lifecycle
Activity lifecycle
 
Android activity
Android activityAndroid activity
Android activity
 
Android activity lifecycle
Android activity lifecycleAndroid activity lifecycle
Android activity lifecycle
 
android activity
android activityandroid activity
android activity
 
Broadcast Receiver
Broadcast ReceiverBroadcast Receiver
Broadcast Receiver
 
Introduction to Android and Android Studio
Introduction to Android and Android StudioIntroduction to Android and Android Studio
Introduction to Android and Android Studio
 
04 activities and activity life cycle
04 activities and activity life cycle04 activities and activity life cycle
04 activities and activity life cycle
 
Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)Day: 1 Introduction to Mobile Application Development (in Android)
Day: 1 Introduction to Mobile Application Development (in Android)
 
Android Location and Maps
Android Location and MapsAndroid Location and Maps
Android Location and Maps
 
android layouts
android layoutsandroid layouts
android layouts
 
Events and Listeners in Android
Events and Listeners in AndroidEvents and Listeners in Android
Events and Listeners in Android
 
Shared preferences
Shared preferencesShared preferences
Shared preferences
 
Android datastorage
Android datastorageAndroid datastorage
Android datastorage
 

Ähnlich wie Android UI

Day 4: Android: UI Widgets
Day 4: Android: UI WidgetsDay 4: Android: UI Widgets
Day 4: Android: UI Widgets
Ahsanul Karim
 
Day 5: Android User Interface [View Widgets]
Day 5: Android User Interface [View Widgets]Day 5: Android User Interface [View Widgets]
Day 5: Android User Interface [View Widgets]
Ahsanul Karim
 
Android User Interface: Basic Form Widgets
Android User Interface: Basic Form WidgetsAndroid User Interface: Basic Form Widgets
Android User Interface: Basic Form Widgets
Ahsanul Karim
 
Android App Development 03 : Widget &amp; UI
Android App Development 03 : Widget &amp; UIAndroid App Development 03 : Widget &amp; UI
Android App Development 03 : Widget &amp; UI
Anuchit Chalothorn
 
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docx
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docxMicrosoft Visual C# 2012- An introduction to object-oriented programmi.docx
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docx
scroghamtressie
 

Ähnlich wie Android UI (20)

Android User Interface Tutorial: DatePicker, TimePicker & Spinner
Android User Interface Tutorial: DatePicker, TimePicker & SpinnerAndroid User Interface Tutorial: DatePicker, TimePicker & Spinner
Android User Interface Tutorial: DatePicker, TimePicker & Spinner
 
Day 4: Android: UI Widgets
Day 4: Android: UI WidgetsDay 4: Android: UI Widgets
Day 4: Android: UI Widgets
 
Day 5: Android User Interface [View Widgets]
Day 5: Android User Interface [View Widgets]Day 5: Android User Interface [View Widgets]
Day 5: Android User Interface [View Widgets]
 
Android User Interface: Basic Form Widgets
Android User Interface: Basic Form WidgetsAndroid User Interface: Basic Form Widgets
Android User Interface: Basic Form Widgets
 
Notes Unit4.pptx
Notes Unit4.pptxNotes Unit4.pptx
Notes Unit4.pptx
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android App Development 03 : Widget &amp; UI
Android App Development 03 : Widget &amp; UIAndroid App Development 03 : Widget &amp; UI
Android App Development 03 : Widget &amp; UI
 
UIAutomator
UIAutomatorUIAutomator
UIAutomator
 
Intake 38 9
Intake 38 9Intake 38 9
Intake 38 9
 
Intake 37 9
Intake 37 9Intake 37 9
Intake 37 9
 
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docx
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docxMicrosoft Visual C# 2012- An introduction to object-oriented programmi.docx
Microsoft Visual C# 2012- An introduction to object-oriented programmi.docx
 
Android Bootcamp Tanzania:understanding ui in_android
Android Bootcamp Tanzania:understanding ui in_androidAndroid Bootcamp Tanzania:understanding ui in_android
Android Bootcamp Tanzania:understanding ui in_android
 
Android
AndroidAndroid
Android
 
Android session 3
Android session 3Android session 3
Android session 3
 
GUI components in Java
GUI components in JavaGUI components in Java
GUI components in Java
 
lec 9.pptx
lec 9.pptxlec 9.pptx
lec 9.pptx
 
Notification android
Notification androidNotification android
Notification android
 
Android action bar and notifications-chapter16
Android action bar and notifications-chapter16Android action bar and notifications-chapter16
Android action bar and notifications-chapter16
 
ANDROID LAB MANUAL.doc
ANDROID LAB MANUAL.docANDROID LAB MANUAL.doc
ANDROID LAB MANUAL.doc
 
Android Application Development - Level 1
Android Application Development - Level 1Android Application Development - Level 1
Android Application Development - Level 1
 

Mehr von nationalmobileapps

Mehr von nationalmobileapps (15)

Android Location Api
Android Location ApiAndroid Location Api
Android Location Api
 
Play Store
Play StorePlay Store
Play Store
 
GCM (push notification)
GCM (push notification)GCM (push notification)
GCM (push notification)
 
Android Sensor
Android SensorAndroid Sensor
Android Sensor
 
Ad Mob
Ad MobAd Mob
Ad Mob
 
Google Map V2
Google Map V2Google Map V2
Google Map V2
 
Database
DatabaseDatabase
Database
 
Activity & Shared Preference
Activity & Shared PreferenceActivity & Shared Preference
Activity & Shared Preference
 
Intent
IntentIntent
Intent
 
Support Multiple Screen
Support Multiple ScreenSupport Multiple Screen
Support Multiple Screen
 
Listview
ListviewListview
Listview
 
Event Handling
Event HandlingEvent Handling
Event Handling
 
Project anatomy & hello world
Project anatomy & hello worldProject anatomy & hello world
Project anatomy & hello world
 
Mobile Application capacity building activities
Mobile Application capacity building activities Mobile Application capacity building activities
Mobile Application capacity building activities
 
Future of Smart phone in Bangladesh
Future of Smart phone in Bangladesh Future of Smart phone in Bangladesh
Future of Smart phone in Bangladesh
 

Kürzlich hochgeladen

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Kürzlich hochgeladen (20)

Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 

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