0

我有一个 SharedPreferences 保存来自一个活动的 EditText 输入并在另一个活动中显示字符串值。

当我在 EditText 字段中输入输入并按下(我创建的按钮)“保存”(将 EditText 提交到编辑器)时,文件已成功存储。但是,显示活动(显示 SharedPreferences 中存储的字符串值)不显示这些值。我猜是因为它是onCreate,所以屏幕在运行时是“创建”的。当用户立即提交(按保存)时,如何让它更新 EditText 值?

CustomStoreEditActivity - 仅存储用户输入(EditText 条目):

    final Button saveButton = (Button) findViewById(R.id.saveButton);
    saveButton.setOnClickListener(new View.OnClickListener() {

        public void onClick(View arg0) {
            if (saveButton.isClickable()) {
                SharedPreferences prefs = getSharedPreferences(
                        "customtime", 0);
                // prefs.registerOnSharedPreferenceChangeListener(this);
                final SharedPreferences.Editor edit = prefs.edit();
                EditText shopName = (EditText) findViewById(R.id.shopName);
                EditText open1 = (EditText) findViewById(R.id.open1);
                EditText close1 = (EditText) findViewById(R.id.close1);
                EditText open2 = (EditText) findViewById(R.id.open2);
                EditText close2 = (EditText) findViewById(R.id.close2);
                EditText open3 = (EditText) findViewById(R.id.open3);
                EditText close3 = (EditText) findViewById(R.id.close3);
                EditText open4 = (EditText) findViewById(R.id.open4);
                EditText close4 = (EditText) findViewById(R.id.close4);
                EditText open5 = (EditText) findViewById(R.id.open5);
                EditText close5 = (EditText) findViewById(R.id.close5);
                EditText open6 = (EditText) findViewById(R.id.open6);
                EditText close6 = (EditText) findViewById(R.id.close6);
                EditText open7 = (EditText) findViewById(R.id.open7);
                EditText close7 = (EditText) findViewById(R.id.close7);
                EditText comments = (EditText) findViewById(R.id.comments);
                edit.putString("shopName", shopName.getText().toString());
                edit.putString("Monday1", open1.getText().toString());
                edit.putString("Monday2", close1.getText().toString());
                edit.putString("Tuesday1", open2.getText().toString());
                edit.putString("Tuesday2", close2.getText().toString());
                edit.putString("Wednesday1", open3.getText().toString());
                edit.putString("Wednesday2", close3.getText().toString());
                edit.putString("Thursday1", open4.getText().toString());
                edit.putString("Thursday2", close4.getText().toString());
                edit.putString("Friday1", open5.getText().toString());
                edit.putString("Friday2", close5.getText().toString());
                edit.putString("Saturday1", open6.getText().toString());
                edit.putString("Saturday2", close6.getText().toString());
                edit.putString("Sunday1", open7.getText().toString());
                edit.putString("Sunday2", close7.getText().toString());
                edit.putString("comments", comments.getText().toString());
                edit.commit();
                Intent myIntent = new Intent(getBaseContext(),
                        CustomStoreActivity.class);
                myIntent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
                startActivity(myIntent);

                Toast.makeText(getBaseContext(), "Opening Hours Saved!",
                        Toast.LENGTH_SHORT).show();

            }

        }
    });

}

CustomStoreActivity - 我认为问题出在哪里:

    private void displayPreferences(){

    SharedPreferences prefs = getSharedPreferences("customtime", 0);
    String shopName = prefs.getString("shopName", "Empty");
    String shopTime1 = prefs.getString("Monday1", " ");
    String shopTime2 = prefs.getString("Monday2",  " ");
    String shopComments = prefs.getString("comments", "");

    TextView displayPrefs = (TextView) findViewById(R.id.displayPrefs);

    displayPrefs.setText(shopName + shopTime1 + shopTime2 + shopComments);

}

感谢您的充裕时间。

4

2 回答 2

1

我认为您正在寻找的部分内容是将您的 CustomStoreActivity 代码放入onResume而不是onCreate. 无论您移入什么代码,只要将其放在前面(包括首次创建时),onResume就会发生。CustomStoreActivity

另一种选择,假设CustomStoreActivity用于启动Activity包含EditTexts 的 ,是使用startActivityForResult并将数据传回结果中,Intent而不是使用SharedPreferences. 是一个简单的示例(但请注意,setResult此示例中的调用是null在您想要传递 的地方传递的Intent如Android 文档中所述)。

似乎您也正在尝试将您的第二个Activity用作带有可编辑字段的对话框。如果是这种情况,另一种选择是Dialog在你的CustomStoreActivity类中实际使用类的一个变体,而不是创建另一个Activity像一个一样的行为。有关对话框,请参阅 Android 文档。

于 2012-04-19T17:47:27.240 回答
0

我不确定我是否真的理解您的问题,但您是否尝试更新与您所在的活动不同的活动的 TextView?在这种情况下,我认为无法做到这一点,您应该使用 Intents 将数据传递给活动

于 2012-04-19T17:50:48.250 回答