diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/activities/SettingsActivity.kt b/app/src/main/kotlin/com/simplemobiletools/notes/activities/SettingsActivity.kt index 28661117..501bcc1d 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/activities/SettingsActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/activities/SettingsActivity.kt @@ -31,6 +31,7 @@ class SettingsActivity : SimpleActivity() { setupFontSize() setupGravity() setupWidgetNote() + setupCursorPlacement() updateTextColors(settings_scrollview) } @@ -121,6 +122,14 @@ class SettingsActivity : SimpleActivity() { } } + private fun setupCursorPlacement() { + settings_cursor_placement.isChecked = config.placeCursorToEnd + settings_cursor_placement_holder.setOnClickListener { + settings_cursor_placement.toggle() + config.placeCursorToEnd = settings_cursor_placement.isChecked + } + } + private fun getCurrentWidgetNoteTitle(currentNoteId: Int, notes: List): String { return notes.firstOrNull { it.id == currentNoteId }?.title ?: "" } diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/fragments/NoteFragment.kt b/app/src/main/kotlin/com/simplemobiletools/notes/fragments/NoteFragment.kt index a184c781..7c5a8f84 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/fragments/NoteFragment.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/fragments/NoteFragment.kt @@ -111,7 +111,10 @@ class NoteFragment : Fragment() { setColors(config.textColor, config.primaryColor, config.backgroundColor) setTextSize(TypedValue.COMPLEX_UNIT_PX, context.getTextSize()) gravity = getTextGravity() - setSelection(text.length) + + if (config.placeCursorToEnd) { + setSelection(text.length) + } } } diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Config.kt index 537cd24e..b82a4d86 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Config.kt @@ -31,4 +31,8 @@ class Config(context: Context) : BaseConfig(context) { var widgetNoteId: Int get() = prefs.getInt(WIDGET_NOTE_ID, 1) set(id) = prefs.edit().putInt(WIDGET_NOTE_ID, id).apply() + + var placeCursorToEnd: Boolean + get() = prefs.getBoolean(CURSOR_PLACEMENT, true) + set(placement) = prefs.edit().putBoolean(CURSOR_PLACEMENT, placement).apply() } diff --git a/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Constants.kt b/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Constants.kt index 89e55402..edae1d46 100644 --- a/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Constants.kt +++ b/app/src/main/kotlin/com/simplemobiletools/notes/helpers/Constants.kt @@ -10,6 +10,7 @@ val CLICKABLE_LINKS = "clickable_links" val WIDGET_NOTE_ID = "widget_note_id" val FONT_SIZE = "font_size" val GRAVITY = "gravity" +val CURSOR_PLACEMENT = "cursor_placement" // gravity val GRAVITY_LEFT = 0 diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml index eca65806..8349e531 100644 --- a/app/src/main/res/layout/activity_settings.xml +++ b/app/src/main/res/layout/activity_settings.xml @@ -70,6 +70,29 @@ + + + + + + Widget-Notiz Links und E-Mail Adressen anklickbar + Place cursor to the end of note Schriftgröße Klein Normal diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index ca4eded6..8936efbb 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -30,6 +30,7 @@ Tamaño de fuente Make links and emails clickable + Place cursor to the end of note Nota del widget Pequeña Normal diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 80b5c826..338ceb24 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -30,6 +30,7 @@ Note utilisée dans le widget Rendre les liens et les emails cliquables + Place cursor to the end of note Taille de la police de la note Petite Normale diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index 802c4260..1b829ff0 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -30,6 +30,7 @@ Widgetben használt jegyzet Hivatkozások és e-mail címek felismerése + Place cursor to the end of note Jegyzet betűméret Kicsi Közepes diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 48618ea7..b3f32d80 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -30,6 +30,7 @@ Note font size Make links and emails clickable + Place cursor to the end of note Note used in widget Small Normal diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index 18dce88f..f4e98bd2 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -30,6 +30,7 @@ メモのフォントサイズ Make links and emails clickable + Place cursor to the end of note ウィジェットで使用するメモ 通常 diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml index ce74e307..51dcd855 100644 --- a/app/src/main/res/values-lt/strings.xml +++ b/app/src/main/res/values-lt/strings.xml @@ -30,6 +30,7 @@ Note used in widget Make links and emails clickable + Place cursor to the end of note Note font size Small Normal diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 170cd691..c3a6132b 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -30,6 +30,7 @@ Tamanho do texto da nota Ativar clique em ligações e endereços de e-mail + Place cursor to the end of note Nota utilizada no widget Pequeno Normal diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index 7a180c54..12c05590 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -30,6 +30,7 @@ Tamanho do texto da nota Ativar clique em ligações e endereços de e-mail + Place cursor to the end of note Nota utilizada no widget Pequeno Normal diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 194f98ad..de8a9479 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -30,6 +30,7 @@ Заметка, отображаемая в виджете Сделать ссылки и адреса электронной почты активными + Помещать курсор в конец заметки Размер текста заметки Мелкий Нормальный diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index 5f0bfdaf..bfe5fe95 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -30,6 +30,7 @@ Note font size Make links and emails clickable + Place cursor to the end of note Note used in widget Small Normal diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index ce74e307..51dcd855 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -30,6 +30,7 @@ Note used in widget Make links and emails clickable + Place cursor to the end of note Note font size Small Normal