use of com.cmput301w18t05.taskzilla.Photo in project Taskzilla by CMPUT301W18T05.
the class ProfileFragment method editProfileClicked.
/**
* Switch to EditProfile Activity
* Send users information to the activity
*/
public void editProfileClicked() {
Intent intent = new Intent(getActivity(), EditProfileActivity.class);
intent.putExtra("Name", user.getName());
intent.putExtra("Email", user.getEmail().toString());
intent.putExtra("Phone", user.getPhone().toString());
if (user.getPhoto() == null) {
user.setPhoto(new Photo(""));
}
intent.putExtra("Photo", user.getPhoto().toString());
startActivityForResult(intent, 1);
}
Aggregations