mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-05 19:21:04 +02:00
fix some glitches related to exporting current notes
This commit is contained in:
parent
53340c9972
commit
7b1e0a5ea0
@ -488,6 +488,7 @@ class MainActivity : SimpleActivity() {
|
|||||||
mCurrentNote.value = textToExport
|
mCurrentNote.value = textToExport
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value)
|
||||||
NotesHelper(this).insertOrUpdateNote(mCurrentNote)
|
NotesHelper(this).insertOrUpdateNote(mCurrentNote)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -532,6 +533,7 @@ class MainActivity : SimpleActivity() {
|
|||||||
if (mCurrentNote.id == note.id) {
|
if (mCurrentNote.id == note.id) {
|
||||||
mCurrentNote.value = note.value
|
mCurrentNote.value = note.value
|
||||||
mCurrentNote.path = note.path
|
mCurrentNote.path = note.path
|
||||||
|
getPagerAdapter().updateCurrentNoteData(view_pager.currentItem, mCurrentNote.path, mCurrentNote.value)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!it) {
|
if (!it) {
|
||||||
|
@ -36,6 +36,13 @@ class NotesPagerAdapter(fm: FragmentManager, val notes: List<Note>, val activity
|
|||||||
|
|
||||||
override fun getPageTitle(position: Int) = notes[position].title
|
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 getCurrentNotesView(position: Int) = (fragments[position] as? TextFragment)?.getNotesView()
|
||||||
|
|
||||||
fun getCurrentNoteViewText(position: Int) = (fragments[position] as? TextFragment)?.getCurrentNoteViewText()
|
fun getCurrentNoteViewText(position: Int) = (fragments[position] as? TextFragment)?.getCurrentNoteViewText()
|
||||||
|
@ -155,6 +155,14 @@ class TextFragment : NoteFragment() {
|
|||||||
view.text_note_view.addTextChangedListener(textWatcher)
|
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 getNotesView() = view.text_note_view
|
||||||
|
|
||||||
fun saveText(force: Boolean) {
|
fun saveText(force: Boolean) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user