문제

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