是否有可能在android中创建编辑文本字段始终保持常量。我希望存储我的登录ID始终保持不变甚至重启应用程序
答案 0 :(得分:2)
如果你想存储一些常量(请特别注意密码而不要使用它!)你应该使用SharedPreference
SharedPreferences sharedPrefs = PreferenceManager
.getDefaultSharedPreferences(this);
sharedPrefs.getString("prefUsername", "NULL");
是检索首选项的代码。
您可以使用PreferenceActivity编写它,或者更复杂(但仍然非常简单)使用EditText和Editor
你应该能够在官方文档中找到信息,我不能在这里写完整篇文章,因为STackOverflow并不是一个教程网站。