Punctuation reordering (#639)
This commit is contained in:
parent
aee242b8fa
commit
9043165395
38 changed files with 808 additions and 26 deletions
|
|
@ -8,6 +8,11 @@
|
|||
android:key="screen_hotkeys"
|
||||
android:title="@string/pref_category_function_keys" />
|
||||
|
||||
<Preference
|
||||
android:fragment="io.github.sspanak.tt9.preferences.screens.punctuation.PunctuationScreen"
|
||||
android:key="screen_punctuation"
|
||||
android:title="@string/pref_category_punctuation_order" />
|
||||
|
||||
<SwitchPreferenceCompat
|
||||
android:defaultValue="false"
|
||||
android:key="backspace_acceleration"
|
||||
|
|
|
|||
25
app/src/main/res/xml/prefs_screen_punctuation.xml
Normal file
25
app/src/main/res/xml/prefs_screen_punctuation.xml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<DropDownPreference
|
||||
android:key="punctuation_order_language"
|
||||
android:title="@string/language" />
|
||||
|
||||
<io.github.sspanak.tt9.preferences.screens.punctuation.PreferenceSentencePunctuationList
|
||||
android:key="punctuation_order_sentence"
|
||||
android:title="@string/punctuation_order_sentence" />
|
||||
|
||||
<io.github.sspanak.tt9.preferences.screens.punctuation.PreferenceSpecialCharList
|
||||
android:key="punctuation_order_special_chars"
|
||||
android:title="@string/punctuation_order_special"
|
||||
android:summary="@string/punctuation_order_whitespace_will_be_added_automatically"/>
|
||||
|
||||
<Preference
|
||||
android:key="punctuation_order_reset_defaults"
|
||||
android:title="@string/punctuation_order_reset_defaults" />
|
||||
|
||||
<Preference
|
||||
android:key="punctuation_order_save"
|
||||
android:title="@string/punctuation_order_save" />
|
||||
|
||||
</PreferenceScreen>
|
||||
Loading…
Add table
Add a link
Reference in a new issue