ok, so I am going through the tutorial of the \"MyFirstApp\" on the devoloper.android.com site. I am on the last tutorial and I have did everything for the first chapter you
I think you're getting the message from the intent the wrong way. EXTRA_MESSAGE
is the content and message
is the identifier.
So your code on DisplayMessageActivity.java
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
should actually be:
String message = intent.getStringExtra(message);