Lab: Create the version of Hello World that changes a message when a button is clicked.
Make up your own unique message. Paste into Word two screen captures (before and after
the button click) of your project running in an AVD.
Due: Jan. 21
EditTextSample.zip (demos the use of a plain, password and number EditText)
CheckBoxDemo.zip (demos the use of a CheckBox -- also use Typeface as in bold and italics)
Widget Order Lab Design a form that will allow a user to enter a name, an
email address, a number of widgets to be ordered and to check whether or not the
user is a member (of the Widget discount club). Then calculate the cost of
their order. Widgets cost $12.99 per widget. Members get a 10% discount.
(To get two decimal places in the calculation use something like
String.format("%10.2f", orderCost) )