build the Intent alike this: Intent intent = new Intent(activity, UserActivity.class); Bundle extras = new Bundle(); extras.putString(“Email”, email.getText().toString().trim()); extras.putString(“Name”, name_db); extras.putString(“User_Id”, user_id_db); extras.putString(“Contact”, contact_db); intent.putExtras(extras); startActivity(intent); while the List<String> contactNumber = db.getContactNumber() already seems unfortunate. it might be rather elegant to return some class Contact (to be defined) instead of a List<String> … so that … Read more