Initial setup screen (#212)
* enabled the launcher icon * added an initial setup screen, for when TT9 is disabled * documentation update
This commit is contained in:
parent
eee786ce56
commit
787ba1c1ef
19 changed files with 230 additions and 16 deletions
32
res/xml/prefs_screen_setup.xml
Normal file
32
res/xml/prefs_screen_setup.xml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
app:layout="@layout/pref_text"
|
||||
app:orderingFromXml="true">
|
||||
<Preference
|
||||
app:key="global_tt9_status"
|
||||
app:layout="@layout/pref_text"
|
||||
app:title="@string/setup_keyboard_status" />
|
||||
|
||||
<Preference
|
||||
app:key="global_default_keyboard"
|
||||
app:layout="@layout/pref_text"
|
||||
app:title="@string/setup_default_keyboard" />
|
||||
|
||||
<Preference
|
||||
app:fragment="io.github.sspanak.tt9.preferences.MainScreen"
|
||||
app:key="goto_main_screen"
|
||||
app:layout="@layout/pref_text"
|
||||
app:title="@string/setup_goto_main_screen"
|
||||
app:enabled="false" />
|
||||
|
||||
<PreferenceCategory
|
||||
android:title="@string/pref_category_about"
|
||||
app:layout="@layout/pref_category"
|
||||
app:singleLineTitle="true">
|
||||
<Preference
|
||||
app:key="version_info"
|
||||
app:layout="@layout/pref_text"
|
||||
app:title="@string/app_name" />
|
||||
</PreferenceCategory>
|
||||
</PreferenceScreen>
|
||||
Loading…
Add table
Add a link
Reference in a new issue