gpt4 book ai didi

java - 使用 EditText 更新 TextView 的值

转载 作者:行者123 更新时间:2023-12-01 11:29:16 24 4
gpt4 key购买 nike

我正在尝试通过 Intent extra 将 EditText 中的文本从一个 Activity 发送到另一个 Activity 。然后,该文本将用于更新第二个 Activity 中的 TextView。 EditText Activity 是使用 startActivityForResult() 调用的。我有以下代码。

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.explicitly_loaded_activity);
// Get a reference to the EditText field
mEditText = (EditText) findViewById(R.id.editText);
// Declare and setup "Enter" button
Button enterButton = (Button) findViewById(R.id.enter_button);
enterButton.setOnClickListener(new OnClickListener() {
// Call enterClicked() when pressed
@Override
public void onClick(View v) {
enterClicked();
}
});
}
// Sets result to send back to calling Activity and finishes
private void enterClicked() {
Log.i(TAG,"Entered enterClicked()");
// TODO - Save user provided input from the EditText field
mEditText = (EditText) findViewById(R.id.editText);
CharSequence userInput = mEditText.getText();
// TODO - Create a new intent and save the input from the EditText field as an extra
Intent returnIntent = new Intent(ExplicitlyLoadedActivity.this, ActivityLoaderActivity.class);
returnIntent.putExtra("returnInput", userInput);
// TODO - Set Activity's result with result code RESULT_OK
setResult(RESULT_OK);
// TODO - Finish the Activity
finish();
}

然后将其发送回以下代码。

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {

Log.i(TAG, "Entered onActivityResult()");

// TODO - Process the result only if this method received both a
// RESULT_OK result code and a recognized request code
// If so, update the Textview showing the user-entered text.
if(resultCode == RESULT_OK && requestCode == GET_TEXT_REQUEST_CODE) {
mUserTextView.setText(data.getCharSequenceExtra("returnInput"));
}
}

其中mUserTextView是我要更新的TextView。谢谢。

最佳答案

您没有使用在enterClicked()中创建的 Intent

改变

setResult(RESULT_OK);

setResult(RESULT_OK, returnIntent);

它应该可以工作!

您可以引用this link .

关于java - 使用 EditText 更新 TextView 的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30554580/

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