 |
Android Cookbook: Recipe How to push string-values using Intent.putExtra() (Recipe 809, Revision 322
Discussion Push Data import android.content.Intent; ... Intent intent = new Intent( this, MyActivity. class); intent.putExtra( "paramName", "paramValue"); startActivity( intent ); The above code might be inside the main activity.
androidcookbook.com |
 |