如何保存setText?

时间:2016-01-21 21:19:20

标签: android save settext

final Button haa = (Button) findViewById(R.id.haactiv);
    haa.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            dhas = (EditText) findViewById(R.id.dha);
            haout = (TextView) findViewById(R.id.haoutput);
            haout.setText(dhas.getText());
        }
    });

我不知道如何在下次启动应用时从getText haout保存输出dhas

感谢您的帮助!

2 个答案:

答案 0 :(得分:1)

您可以将其保存在共享首选项中。例如:

SharedPreferences sharedPref = getActivity().getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPref.edit();
editor.putInt(getString(R.string.saved_high_score), newHighScore);
editor.commit();

要阅读共享偏好设置:

SharedPreferences sharedPref = getActivity().getPreferences(Context.MODE_PRIVATE);
int defaultValue = getResources().getInteger(R.string.saved_high_score_default);
long highScore = sharedPref.getInt(getString(R.string.saved_high_score), defaultValue);

有关共享偏好的更多信息here

答案 1 :(得分:0)

如果您需要永久保存数据。 尝试保存.txt文件。