[Solved] How Do i implement Login and Logout Functionality in my android app? [closed]
You can Use SharedPreferences. Take a Boolean Value and set it to true when you login. And after you click on Logout set it to False. Redirect the pages after your splash screen accordingly. You can create a sperate class of sharedPreferences. Eg : public class CustomSharedPreferences { public CustomSharedPreferences(Context context) { // TODO Auto-generated … Read more