Teams Winter 2011/team1/Android/Implement View Option
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: