Skip to content
Advertisement

How to remember Value in andorid studio?

I have created a login page which users can just enter their username (No passowrd or auth needed) and it will be displayed on the next activity. But every time you open the app you have to enter your username. How do i make it remember the username. (Language-Java)

Thanks!

(I am a beginner)

JavaScript

(This one is the activity where user enters their username)

JavaScript

(This is the welcome activity)

Advertisement

Answer

I think you need to save the user username in Sharedpreferences and then when you start your app get the value from sharedpreferences and check if the value is null or empty then let the user enter his username else you can set the username from sharedpreferences .

Try this Code :

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement