Just post your message in the kit and pass it on to the intention. In the following function, the onCreate function retrieves the package and displays.
Bundle b = new Bundle(); b.putString("message","your message"); Intent i = new Intent(this,NextActivity.class); i.putExtras(b); startActivity(i);
In the following onCreate operation:
String message = (String) getIntent().getSerializableExtra("message");
show the message ...
Farhan Mar 01 '11 at 7:40 2011-03-01 07:40
source share