i have following code to call new activity
now i want to use variable to call new activity
String var1,var2,var3; var1=\"Login\"; var2=\"Signup\"; var3=\"more
If you want to add data, you'll have to use a different Intent constructor:
public Intent(String action, Uri uri, Context packageContext, Class> cls)
In the uri you can put your own information. See this link for more details.