I have a loginActivity
and a MainActivity
I have used SharedPreferences
to store some values in some variables in the loginActivity
. Now I want to use these values(They're boolean
values) in MainActivity without re=opening MainActivity. How do I do this?
Also, the SharedPreferences
are in an onClick
method for a button
.
Thank you!