mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 18:21:05 +02:00
properly init the viewpager with wanted note
This commit is contained in:
parent
3070bba0eb
commit
6e1a530da1
@ -45,11 +45,19 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
||||
fun initViewPager() {
|
||||
mNotes = mDb.getNotes().sortedBy(Note::title)
|
||||
mCurrentNote = mNotes[0]
|
||||
var itemIndex = 0
|
||||
for (i in 0..mNotes.count() - 1) {
|
||||
if (mNotes[i].id == config.currentNoteId) {
|
||||
mCurrentNote = mNotes[i]
|
||||
itemIndex = i
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
mAdapter = NotesPagerAdapter(supportFragmentManager, mNotes)
|
||||
view_pager.apply {
|
||||
adapter = mAdapter
|
||||
currentItem = 0
|
||||
currentItem = itemIndex
|
||||
addOnPageChangeListener(this@MainActivity)
|
||||
}
|
||||
}
|
||||
@ -129,14 +137,19 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
||||
|
||||
private fun updateSelectedNote(id: Int) {
|
||||
config.currentNoteId = id
|
||||
|
||||
for (i in 0..mNotes.count() - 1) {
|
||||
view_pager.currentItem = i
|
||||
mCurrentNote = mNotes[i]
|
||||
}
|
||||
}
|
||||
|
||||
fun displayNewNoteDialog() {
|
||||
NewNoteDialog(this, mDb) {
|
||||
val newNote = Note(0, it, "", TYPE_NOTE)
|
||||
val id = mDb.insertNote(newNote)
|
||||
updateSelectedNote(id)
|
||||
mNotes = mDb.getNotes()
|
||||
updateSelectedNote(id)
|
||||
invalidateOptionsMenu()
|
||||
initViewPager()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user