1 / 35

Objectives

Android Boot Camp for Developers Using Java, Comprehensive: A Guide to Creating Your First Android Apps Chapter 8: Design! Using a DatePicker on a Tablet. Objectives. In this chapter, you learn to: Create an Android project on a tablet Understand tablet specifications

jennis
Download Presentation

Objectives

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Android Boot Camp for Developers Using Java, Comprehensive: A Guide to Creating Your First Android Apps Chapter 8: Design! Using a DatePicker on a Tablet Android Boot Camp for Developers Using Java, 2nd Ed.

  2. Objectives In this chapter, you learn to: • Create an Android project on a tablet • Understand tablet specifications • Follow design principles for the Android tablet • Add a second Android Virtual Device • Add a custom launcher and tablet theme • Understand the Calendar class • Use date, time, and clock controls • Determine the system date Android Boot Camp for Developers Using Java, 2nd Ed.

  3. Objectives (continued) • Display a DatePicker control • Launch a dialog box containing a DatePicker control • Code an onDateSetListener method to await user interaction • Determine the date entered on a calendar control • Test an application on a tablet emulator Android Boot Camp for Developers Using Java, 2nd Ed.

  4. Designing a Tablet Application • Android Apps not limited to phones • Tablets are used to • Connect to the Internet • Play games • Use social media • Check e-mail • And more… Android Boot Camp for Developers Using Java, 2nd Ed.

  5. Designing a Tablet Application (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  6. Designing a Tablet Application (continued) • Steps to complete the App: 1. Add an Android Virtual Device specifically designed for tablets. 2. Add the images used in this project. 3. Change the theme and icon for the tablet display. 4. Create a custom XML file with a Table layout. 5. Add and initialize the TextView controls and the Button control. 6. Initialize a DatePickerDialog with the present date and listen for the user to select a date. 7. Return the selected date. 8. Display the selected reservation date in the TextView control. Android Boot Camp for Developers Using Java, 2nd Ed.

  7. Designing a Tablet Application • Native applications are programs locally installed on a specific platform (phone or tablet) • An emulated application is converted in real time to run on a variety of platforms (various screens) • Android tablet apps create an optimal user experience • Different devices have different screen sizes • Common size is between 7.3 and 10.1 inches, 1280 x 800 pixel resolution and 16:9 screen ratio • iPads are 9.7 inches, 1024 x 768 and 4:3 Android Boot Camp for Developers Using Java, 2nd Ed.

  8. Designing a Tablet Application (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  9. Design Best Practices for Tablets • Design Tips for Tablets • Keep screens uncluttered and use large controls • Make the design simple and make the app intuitive • Leave out “cool” interactions that distract the user • Use a flexible dimension – use dp and sp – not px or pt • Provide higher resolution – make your app look great on any screen size • Create a unique experience for phone and tablet designs • Use larger fonts than with a phone app. Consider printing out your user interface design to see how it looks. Android Boot Camp for Developers Using Java, 2nd Ed.

  10. Adding an Android Virtual Device for the Tablet • Uses Android Honeycomb 3.0 operating system • The minimum required SDK should be set to API 11: Android 3.0 (Honeycomb) to cover the oldest Android tablets • Set the Target SDK to the newest SDK available • Must add Android Virtual Devices (AVD) to Eclipse Android Boot Camp for Developers Using Java, 2nd Ed.

  11. Creating a Tablet App Android Boot Camp for Developers Using Java, 2nd Ed.

  12. Creating a Tablet App (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  13. Adding an Android Virtual Device for the Tablet (continued) • Creating the String Table Android Boot Camp for Developers Using Java, 2nd Ed.

  14. Adding an Android Virtual Device for the Tablet (continued) Designing a Tablet Table Layout • TableLayoutis composed of TableRow controls—one for each row in your table in activity_main.xml • The padding property can be used to offset the content of the control by a specific number of pixels. • Another Android property named typeface sets the style of the text to font families that include monospace, sans_serif, and serif Android Boot Camp for Developers Using Java, 2nd Ed.

  15. Adding an Android Virtual Device for the Tablet (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  16. Adding an Android Virtual Device for the Tablet (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  17. Adding an Android Virtual Device for the Tablet (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  18. Adding an Android Virtual Device for the Tablet (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  19. Adding an Android Virtual Device for the Tablet (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  20. Adding an Android Virtual Device for the Tablet (continued) Date, Time, and Clocks • Creating a control to enter the date is crucial because requiring users to type the date in a text box can lead to multiple errors, including incorrect format or typos Android Boot Camp for Developers Using Java, 2nd Ed.

  21. Instantiating the Objects • The txtReservation TextView control is referenced in multiple methods, so this instantiation must be declared as a class variable • The TextView control, Button control, and the Button OnClickListener must all be instantiated Android Boot Camp for Developers Using Java, 2nd Ed.

  22. Instantiating the Objects (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  23. Instantiating the Objects (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  24. Using the Calendar Class • The Android System date is accessed by using the Calendar class which reads the updated time zone information from the wireless provider • The getInstance method returns the YEAR, MONTH,DAY_OF_MONTH, and the DAY_OF_YEAR • Code Syntax Calendar c = Calendar.getlnstance( ) ; Android Boot Camp for Developers Using Java, 2nd Ed.

  25. Using the Calendar Class (continued) Date Format • Formats the date into a String value • Code Syntax DateFormatfmtDate = DateFormat.getDateInstance(); DatePickerDialog Input • Allows you to select a date from a DatePickerView • TimePickerDialogallows you to select a time from the TimePicker View • The ProgressDialogdisplays a progress bar below a message text box to inform you of how long a time-consuming operation is taking • Code Syntax public void onClick(View v) { // TODO Auto-generated method stub new DatePickerDialog(MainActivity.this, d, c.get(Calendar.YEAR), c.get(Calendar.MONTH), c.get(Calendar.DAY_OF_MONTH)).show(); } Android Boot Camp for Developers Using Java, 2nd Ed.

  26. Using the Calendar Class (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  27. Using the Calendar Class (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  28. Using the Calendar Class (continued) • Selecting the Date From the DatePickerDialog • Code Syntax • DatePickerDialog.OnDateSetListener d = new DatePickerDialog.OnDateSetListener() { }Adding the onDateSet() Method • Method obtains the date selected by the user • Code Syntax • public void onDateSet(DatePicker view, int year, • intmonthOfYear, intdayOfMonth) { • c.set(Calendar.YEAR, year); • c.set(Calendar.MONTH, monthOfYear); • c.set(Calendar.DAY_OF_MONTH, dayOfMonth); • } Android Boot Camp for Developers Using Java, 2nd Ed.

  29. Using the Calendar Class (continued) Android Boot Camp for Developers Using Java, 2nd Ed.

  30. Using the Calendar Class (continued) • Displaying the Date Using the getTime( ) Method • The getTime( ) method returns the time value in the Date object Android Boot Camp for Developers Using Java, 2nd Ed.

  31. Summary • When designing apps for an Android tablet, keep your users’ objectives and the size of the device in mind. • To use an Android emulator designed for tablets, you first add AVD configurations appropriate for tablets. • You can combine the Linear layout and the Table layout to create a simple, clean layout that takes advantage of a tablet’s width. The TableLayout contains TableRowcontrols—one for each row in your table in main.xml. In each TableRow, you can insert a view control such as a Button or TextView. Android Boot Camp for Developers Using Java, 2nd Ed.

  32. Summary (continued) • You can display a calendar tool called a DatePicker control in a dialog box so users can select a date from the control. The Time & Date category in the Palette contains many calendar controls, including TimePicker, DatePicker, CalendarView, Chronometer, AnalogClock, and DigitalClock. • To display the current system date when the DatePicker control opens, you use the currentYear, currentMonth, and currentDay class variables which hold the integer value of the system year, month, and day. Android Boot Camp for Developers Using Java, 2nd Ed.

  33. Summary (continued) • To create a DatePickerDialog instance, you must OnDateSetListener( ) method to await user interaction. • If you include a control, such as a Button, that users tap to display a calendar, use the setOnClickListenermethod to implement the Button.OnClickListener. • When a dialog box containing a DatePicker appears, users can select a date and tap a Button control. Android Boot Camp for Developers Using Java, 2nd Ed.

  34. Summary (continued) • When the integer id for the DATE_DIALOG_ID constant is passed to the DatePicker dialog box in the onClick method, a new DatePicker Dialog is passed along with the values for year, month, and day. • After an app calls a showDialog(DATE_DIALOG_ID) method in reaction to the user tapping a Button control, the showDialog method calls the OnCreateDialog callback method. Android Boot Camp for Developers Using Java, 2nd Ed.

  35. Summary (continued) • When a dialog box containing a DatePicker appears, users can select a date and tap a Button control. Tapping the Button invokes an onDateSetListener in DatePickerDialog, which passes integers representing the year, month, and day from the DatePicker into onDateSet. The selected date can then be displayed in a TextView control using setText. Android Boot Camp for Developers Using Java, 2nd Ed.

More Related