我正在编写Android应用程序。我需要将用户的id存储在本地,以便他每次使用应用程序时都不必重写其名称,姓氏和密码。 做这个的最好方式是什么?
答案 0 :(得分:2)
您可以使用共享偏好;
检查this教程。
答案 1 :(得分:1)
您可以使用共享首选项来存储ID
保存价值的代码
public static final String MyPREFERENCES = "MyPrefs" ;
SharedPreferences sharedpreferences = getSharedPreferences(MyPREFERENCES, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString("id", 1);
/*editor.putString("Key", value); */
editor.commit();
获取价值的代码
String id = sharedpreferences.getString("id", "");
/*sharedpreferences.getString("key", "defaultValue"); */
答案 2 :(得分:0)
有4种方法 如果您想保存更复杂的数据,以下某些方法非常有用。
Check this tutorial to get through SQLite
我的最爱 - Documentation and HowToDo
有点复杂但很快 - Documentation and HowToDo
通过互联网提供非常好的文档和支持 - Documentation and How to do
新技术巨头大量使用 - Documentation and how to do