Witajcie,
w MainActivity.java w If-ie
if (isGoodAnswer)
intent.putExtra("KEY_ANSWER", "Good Answer");
intent.putExtra("KEY_ANOTHER_BUTTON", "AnotherButton");
przekazuje `button` do wyświetlenia w AnswerActicity.java
String answer= getIntent().getExtras().getString("KEY_ANSWER",""); //1
Log.e(TAG, "initVariable: answer="+answer); //2
if(answer.equalsIgnoreCase("Good Answer")){ //3
String anotherButton= getIntent().getExtras().getString("KEY_ANOTHER_BUTTON",""); //4
Log.e(TAG, "initVariable: another button="+anotherButton ); //5
Czy ktoś z Was mógłby wyjaśnić mi dokładnie każdą linijkę powyższego kodu 1,2,3,4,5?