-1

是否可以在 android 中创建编辑文本字段始终保持不变。?我想存储我的登录 ID 始终不变,甚至重新启动应用程序

4

1 回答 1

2

如果你想存储一些常量(特别注意密码,不要使用它!)你应该使用 SharedPreference

SharedPreferences sharedPrefs = PreferenceManager
                .getDefaultSharedPreferences(this);
sharedPrefs.getString("prefUsername", "NULL");

是检索首选项的代码。

您可以使用 PreferenceActivity 编写它,或者更复杂(但仍然很容易)使用 EditText 和编辑器

你应该可以在官方文档中找到信息,我不能在这里写全部内容,因为 STackOverflow 并不是一个教程网站。

于 2013-06-02T10:59:57.597 回答