fix keyboard showing at app startup

This commit is contained in:
tibbi
2018-10-19 11:11:15 +02:00
parent e264bad268
commit f7f08931f3
2 changed files with 8 additions and 3 deletions

View File

@ -3,7 +3,6 @@ package com.simplemobiletools.notes.fragments
import android.annotation.SuppressLint
import android.graphics.Typeface
import android.os.Bundle
import androidx.fragment.app.Fragment
import android.text.Editable
import android.text.Selection
import android.text.TextWatcher
@ -89,6 +88,11 @@ class NoteFragment : androidx.fragment.app.Fragment() {
setText(fileContents)
}
skipTextUpdating = false
if (config.showKeyboard) {
requestFocus()
}
setSelection(if (config.placeCursorToEnd) text.length else 0)
}
}