Home > Google Android > Intent: put variables to share

Intent: put variables to share

In Class1 you have an Intent definition. It could be Button press as an example. You want to share message variable msg:

Intent yourIntent = new Intent(context, ActivityORAppWidgetProvider.class);
yourInten
t.setAction(ACTION_YOU_WANT);
yourIntent
.putExtra(“msg”, “This is message for Intent”);

From Class2 where you want to work with the variable

try {
msg = intent.getStringExtra(“msg“);
} catch (NullPointerException e) {
Log.e(“Error”, “msg = null“);
}

Categories: Google Android
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment