アクティビティが返されたら、EditText と TextView のテキストを変更する必要があります。
したがって、 onActivityResult で次のことを行いました。
protected void onActivityResult(int requestCode, int resultCode, Intent data){
Bundle extras = data.getExtras();
EditText edit = (EditText)findViewByID(R.id.edit);
edit.setText(extras.GetString("edit");
TextView tv = (TextView)findViewByID(R.id.tv);
tv.setText(extras.GetString("tv");
}
TextView のテキストは変更されますが、EditText のテキストは変更されません。
onCreate のテキストを変更するとすべてが機能しますが、onActivityResult では TextView だけが機能します。
私の質問は、onActivityResult の EditText のテキストを変更するにはどうすればよいですか?