質問

I have got some trouble with reading a file. I read the file from onCreate, but if I change the text on the next page it saves but I don't see the new data.

I save in file in onPause, onSaveInstance, but if I restart the application it's ok. But I don't know why only that. When I must read file?

役に立ちましたか?

解決

follow below steps:

  1. use startActivityForResult(intent, requestCode);
  2. goto next page(activity) change file and save file also
  3. then use Intent returnIntent = new Intent(); //intent.putExtra("SOMETHING", "EXTRAS"); (if file changes) setResult(RESULT_OK, intent); else setResult(RESULT_CANCELED, intent);(if file did not change)
    finish();

他のヒント

Save your stuff in onPause() or onSaveInstance()

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top