From 1e51175be452c0114860aa6570dd1678643dd561 Mon Sep 17 00:00:00 2001 From: tibbi Date: Fri, 10 Nov 2017 16:02:20 +0100 Subject: [PATCH] handle actionMode related things only if the activity is init --- .../notes/activities/MainActivity.kt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/notes/activities/MainActivity.kt index 4b429bb1..0e1410d7 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/activities/MainActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/activities/MainActivity.kt @@ -43,6 +43,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener { lateinit var mNotes: List var noteViewWithTextSelected: MyEditText? = null + private var wasInit = false override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) @@ -70,6 +71,8 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener { intent.action = null } } + + wasInit = true } private fun handleText(text: String) { @@ -176,10 +179,12 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener { // https://code.google.com/p/android/issues/detail?id=191430 quickfix override fun onActionModeStarted(mode: ActionMode?) { super.onActionModeStarted(mode) - currentNotesView()?.apply { - if (config.clickableLinks || movementMethod == LinkMovementMethod.getInstance()) { - movementMethod = ArrowKeyMovementMethod.getInstance() - noteViewWithTextSelected = this + if (wasInit) { + currentNotesView()?.apply { + if (config.clickableLinks || movementMethod == LinkMovementMethod.getInstance()) { + movementMethod = ArrowKeyMovementMethod.getInstance() + noteViewWithTextSelected = this + } } } }