I am allowing registered users to access the app. The users have to login every time they open the app. So I want to know how to login the app single time like facebook or whatsapp?
You can use Shared Preferences .
Android provides many ways of storing data of an application. One of this way is called Shared Preferences. Shared Preferences allow you to save and retrieve data in the form of key,value pair
.
SO Help .
You can get values from Shared preferences using getSharedPreferences() method.
You also need an editor to edit and save the changes in shared preferences.
Demo