i have a problem, i have to recall the value of a string from the main class to a secondary class, how can i access to the string on the main class from the second?
I got a first Class(LoginActivity) and a second class(DashboardActivity) I have to take the returning value of the LoginActivity (string username) in the dashboard, how can i do this?
i have a problem, i have to recall the value of a string from
Share
When launching DashboardActivity, pass the String value as an Intent.EXTRA.
When launching:
And to get the value: