Difference between revisions of "Teams Winter 2011/team1/Android/Implement View Option"
(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…') |
(No difference)
|
Revision as of 11:08, 28 March 2011
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: