Вы можете использовать общие предпочтения, чтобы сохранить информацию с первого экрана, например:
//save you SharedPreferences
SharedPreferences.Editor yourEditor = getSharedPreferences("pref",
MODE_PRIVATE).edit();
yourEditor.putString("name", "user name");
yourEditor.putInt("password", 123);
yourEditor.apply();
//how to get them
SharedPreferences prefs = getSharedPreferences("pref, MODE_PRIVATE);
String userName = prefs.getString("name", "default");
//default is the default value
int idName = prefs.getInt("password", 0); //0 is the default value.