I want to make an Android-Login-App. First time you have to login with an username an password on the Login-Screen.
Then the App switches to Screen2.
And if I open the App another time. The App must stored the login.
So that I don't have to login again and go directly to Screen2.
But I'm not able to store the Login and go directly to Screen2...
So on my App, which I made, I have to login every time when I start the App.
I can't store the Login in a Database...
Can someone help me, how to store the data and to start directly the Screen2, when I open the App?
I would be very happy to receive an answer.
Thanks in advance.
Answers
Im not so good with databases...
So could you explain me how to store this type of data?
I think you can take a look to https://github.com/jamesmontemagno/SettingsPlugin/blob/master/src/Plugin.Settings.Android/Settings.cs
im new xamarin but i think you can use sqlite
first create a class
class LoginInfo
{
public string UserName{ get; set; }
I will test the code in my App and write again, wheter it is working.
Sorry, but have somebody found an example Login Android App?
Maybe a link to an GitHub project or something?!