检查首选项中是否已有登录名和密码

Tsu*_*aze 3 passwords android login android-preferences

我看到了一些自动登录的教程例如这个链接,但是当我第一次使用该应用程序时,如何检查登录名和密码是否已经插入到"首选项活动"中?我应该放什么条件?

jkh*_*uw1 7

SharedPreferences sp=PreferenceManager.
               getDefaultSharedPreferences(context);
if(sp.contains("Username")){
//login  exists assuming you are saving the username to a preference with the name "Username"
}
Run Code Online (Sandbox Code Playgroud)