Android: passing paramters between classes
Posted
by Yang
on Stack Overflow
See other posts from Stack Overflow
or by Yang
Published on 2010-04-06T04:48:55Z
Indexed on
2010/04/06
4:53 UTC
Read the original article
Hit count: 236
I have a class2 which is involved by class1 when clicks are made. I have to pass some parameters/objects from class1 to class2. I only know the standard way which does not have an option of passing parameters.
// launch the full article
Intent i = new Intent(this, Class2.class);
startActivity(i);
© Stack Overflow or respective owner