gpt4 book ai didi

android - 保存编辑文本

转载 作者:行者123 更新时间:2023-11-29 18:18:53 26 4
gpt4 key购买 nike

我有一个 editText (R.id.editText1)。但是当我退出 Activity 并重新启动它时,文本消失了。所以我想我做一个选项菜单。

 @Override
public boolean onCreateOptionsMenu(Menu menu) {
menu.add(0, MENU_SAVE, 0, "Save");
menu.add(1, MENU_GET, 1, "Get");
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case MENU_SAVE:
Here i must save the editText1
return true;
case MENU_GET:
Here i must get the editText1 that i have saved
return true;
}

return false;

但我现在不知道如何保存 editText 以及如何加载它。我希望你能帮助我,因为我是 android 的新手。

高维

编辑:

我自己找到了答案。如果你也有问题,你可以去: http://www.edumobile.org/android/android-beginner-tutorials/state-persistence/

高维

最佳答案

尝试使用 SharedPreferences 将值保存在编辑文本中。

关于android - 保存编辑文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6598576/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com