mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-05 11:11:05 +02:00
minor code style update
This commit is contained in:
parent
64411007e3
commit
45e2e0c530
@ -40,6 +40,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
|||||||
lateinit var mAdapter: NotesPagerAdapter
|
lateinit var mAdapter: NotesPagerAdapter
|
||||||
lateinit var mDb: DBHelper
|
lateinit var mDb: DBHelper
|
||||||
lateinit var mNotes: List<Note>
|
lateinit var mNotes: List<Note>
|
||||||
|
|
||||||
var noteViewWithTextSelected: MyEditText? = null
|
var noteViewWithTextSelected: MyEditText? = null
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
@ -122,7 +123,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
|||||||
// https://code.google.com/p/android/issues/detail?id=191430 quickfix
|
// https://code.google.com/p/android/issues/detail?id=191430 quickfix
|
||||||
override fun onActionModeStarted(mode: ActionMode?) {
|
override fun onActionModeStarted(mode: ActionMode?) {
|
||||||
super.onActionModeStarted(mode)
|
super.onActionModeStarted(mode)
|
||||||
with(currentNotesView()) {
|
currentNotesView().apply {
|
||||||
if (config.clickableLinks || movementMethod == LinkMovementMethod.getInstance()) {
|
if (config.clickableLinks || movementMethod == LinkMovementMethod.getInstance()) {
|
||||||
movementMethod = ArrowKeyMovementMethod.getInstance()
|
movementMethod = ArrowKeyMovementMethod.getInstance()
|
||||||
noteViewWithTextSelected = this
|
noteViewWithTextSelected = this
|
||||||
@ -133,9 +134,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
|
|||||||
override fun onActionModeFinished(mode: ActionMode?) {
|
override fun onActionModeFinished(mode: ActionMode?) {
|
||||||
super.onActionModeFinished(mode)
|
super.onActionModeFinished(mode)
|
||||||
if (config.clickableLinks) {
|
if (config.clickableLinks) {
|
||||||
noteViewWithTextSelected?.let {
|
noteViewWithTextSelected?.movementMethod = LinkMovementMethod.getInstance()
|
||||||
it.movementMethod = LinkMovementMethod.getInstance()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user