I might have misunderstood how intents are supposed to be used, so I might be asking the wrong thing here. If that\'s the case, please help me get on the right track with th
You can do the following to add information into the intent bundle:
Intent i = new Intent(MessageService.this, ViewMessageActivity.class);
i.putExtra("message", "value");
startActivity(i);
Then in the activity you can retrieve like this:
Bundle extras = getIntent().getExtras();
String message = extras.getString("message");