如何使用共享首選項創建多會話,以便兩個用戶可以在同一會話中登錄和註銷?使用SharedPreferences登錄很多用戶
我有以下代碼。
public class Session
{
SharedPreferences prefs;
SharedPreferences.Editor editor;
Context ctx;
String [][] usuarios;
int i,j;
public Session(Context ctx)
{
this.ctx = ctx;
prefs = ctx.getSharedPreferences("init", Context.MODE_PRIVATE);
editor = prefs.edit();
}
public void setLoggedIn(boolean loggedin)
{
editor.putBoolean("loggedinmode",loggedin);
editor.commit();
}
public boolean loggedin()
{
return prefs.getBoolean("loggedinmode",false);
}
}
我正在使用Android Studio。
兩個用戶最大?或者任何數字?此外,SharedPreferences不是存儲列表的好方法,更好的解決方案是使用JSON或純文本文件。 –