I think you better add the kit to your intentions and read the information about it. You pass your parameters using this package.
Example:
Intent myIntent = new Intent(this, BlipImageSender.class);
Bundle paramets = new Bundle();
paramets.putString("YOUR_PARAM_IDENT","your_parameter_value");
myIntent.putExtras(paramets);
this.startActivity(myIntent);
and in your class:
String your_param_value = getIntent().getExtras().getString("YOUR_PARAM_IDENT");
Nanne source
share