“Co robi Extra?” Kod odpowiedzi

Co robi Extra?

Intent i = new Intent(FirstScreen.this, SecondScreen.class);   
String keyIdentifer  = null;
i.putExtra("STRING_I_NEED", strName);
Yellowed Yacare

Co robi Extra?

String newString
if (savedInstanceState == null) {
    extras = getIntent().getExtras();
    if(extras == null) {
        newString= null;
    } else {
        newString= extras.getString("STRING_I_NEED");
    }
} else {
    newString= (String) savedInstanceState.getSerializable("STRING_I_NEED");
}
Yellowed Yacare

Odpowiedzi podobne do “Co robi Extra?”

Pytania podobne do “Co robi Extra?”

Więcej pokrewnych odpowiedzi na “Co robi Extra?” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu