diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/pro/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/notes/pro/activities/MainActivity.kt index befef7db..abb4e277 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/pro/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/pro/activities/MainActivity.kt @@ -488,6 +488,7 @@ class MainActivity : SimpleActivity() { mCurrentNote.value = textToExport } + getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value) NotesHelper(this).insertOrUpdateNote(mCurrentNote) } } @@ -532,6 +533,7 @@ class MainActivity : SimpleActivity() { if (mCurrentNote.id == note.id) { mCurrentNote.value = note.value mCurrentNote.path = note.path + getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value) } if (!it) { diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/pro/adapters/NotesPagerAdapter.kt b/app/src/main/kotlin/com/simplemobiletools/notes/pro/adapters/NotesPagerAdapter.kt index 77c2a4dd..5086b8de 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/pro/adapters/NotesPagerAdapter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/pro/adapters/NotesPagerAdapter.kt @@ -36,6 +36,13 @@ class NotesPagerAdapter(fm: FragmentManager, val notes: List, val activity override fun getPageTitle(position: Int) = notes[position].title + fun updateCurrentNoteData(position: Int, path: String, value: String) { + (fragments[position] as? TextFragment)?.apply { + updateNotePath(path) + updateNoteValue(value) + } + } + fun getCurrentNotesView(position: Int) = (fragments[position] as? TextFragment)?.getNotesView() fun getCurrentNoteViewText(position: Int) = (fragments[position] as? TextFragment)?.getCurrentNoteViewText() diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/pro/fragments/TextFragment.kt b/app/src/main/kotlin/com/simplemobiletools/notes/pro/fragments/TextFragment.kt index 6f93bf38..ca01bf72 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/pro/fragments/TextFragment.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/pro/fragments/TextFragment.kt @@ -155,6 +155,14 @@ class TextFragment : NoteFragment() { view.text_note_view.addTextChangedListener(textWatcher) } + fun updateNoteValue(value: String) { + note?.value = value + } + + fun updateNotePath(path: String) { + note?.path = path + } + fun getNotesView() = view.text_note_view fun saveText(force: Boolean) {