Intent i = new Intent(FirstScreen.this, SecondScreen.class);
String strName = null;
i.putExtra("STRING_I_NEED", strName);
String newString;
if (savedInstanceState == null) {
Bundle extras = getIntent().getExtras();
newString= extras.getString("STRING_I_NEED");