Teams Winter 2011/team1/Android/Implement View Option

From CDOT Wiki
Revision as of 12:08, 28 March 2011 by Azea (talk | contribs) (Created page with '=== 6. Implement View Option === 6.1. Inside the <code>ContactList</code> class add the following code to implement view option: <pre> case R.id.item3: Student view…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

6. Implement View Option

6.1. Inside the ContactList class add the following code to implement view option:

    case R.id.item3:
         Student viewStudent = (Student)contactsList.getSelectedItem();
         if(viewStudent != null) {
             Toast.makeText(this.getApplicationContext(), "First Name: " + viewStudent.getFirstname()
                 + " \nLast Name: " + viewStudent.getLastName()
                 + " \nE-mail: " + viewStudent.getEmail(), Toast.LENGTH_LONG).show();   
         } else {
             showDialog("No contact was selected!");
         }
         break;
 

6.2. Run the application, select a student and select "View Student" from the menu:
A view.png