mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
4a12409d97
prefs rather than hard-coded. Remaining new prefs entries still unused.
99 lines
4.3 KiB
XML
99 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:key="first_preferencescreen"
|
|
>
|
|
<PreferenceCategory android:title="@string/general_prefs"
|
|
>
|
|
|
|
<CheckBoxPreference android:key="@string/key_color_tiles"
|
|
android:title="@string/color_tiles"
|
|
android:defaultValue="true"
|
|
/>
|
|
|
|
<CheckBoxPreference android:key="@string/key_show_arrow"
|
|
android:title="@string/show_arrow"
|
|
android:defaultValue="true"
|
|
/>
|
|
<CheckBoxPreference android:key="@string/key_explain_robot"
|
|
android:title="@string/explain_robot"
|
|
android:defaultValue="false"
|
|
/>
|
|
<CheckBoxPreference android:key="@string/key_skip_confirm"
|
|
android:title="@string/skip_confirm_turn"
|
|
android:defaultValue="false"
|
|
/>
|
|
<CheckBoxPreference android:key="@string/key_hide_values"
|
|
android:title="@string/hide_values"
|
|
android:defaultValue="false"
|
|
/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceScreen android:title="@string/prefs_colors"
|
|
>
|
|
<EditTextPreference android:key="@string/key_player0"
|
|
android:title="@string/player0"
|
|
android:defaultValue="0x000000"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_player1"
|
|
android:title="@string/player1"
|
|
android:defaultValue="0xFF0000"
|
|
/>
|
|
|
|
<EditTextPreference android:key="@string/key_player2"
|
|
android:title="@string/player2"
|
|
android:defaultValue="0x000000"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_player3"
|
|
android:title="@string/player3"
|
|
android:defaultValue="0xFF0000"
|
|
/>
|
|
|
|
<EditTextPreference android:key="@string/key_bonus_l2x"
|
|
android:title="@string/bonus_l2x"
|
|
android:defaultValue="0xAFAF00"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_bonus_l3x"
|
|
android:title="@string/bonus_l3x"
|
|
android:defaultValue="0x00AFAF"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_bonus_w2x"
|
|
android:title="@string/bonus_w2x"
|
|
android:defaultValue="0xAF00AF"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_bonus_w3x"
|
|
android:title="@string/bonus_w3x"
|
|
android:defaultValue="0xAFAFAF"
|
|
/>
|
|
|
|
<EditTextPreference android:key="@string/key_tile_back"
|
|
android:title="@string/tile_back"
|
|
android:defaultValue="0xFFFF99"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_focus"
|
|
android:title="@string/focus"
|
|
android:defaultValue="0x7070FF"
|
|
/>
|
|
</PreferenceScreen>
|
|
|
|
|
|
<PreferenceScreen android:title="@string/advanced"
|
|
>
|
|
<EditTextPreference android:key="@string/key_relay_host"
|
|
android:title="@string/relay_host"
|
|
android:defaultValue="eehouse.org"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_relay_port"
|
|
android:title="@string/relay_port"
|
|
android:defaultValue="10999"
|
|
android:numeric="decimal"
|
|
/>
|
|
<EditTextPreference android:key="@string/key_sms_port"
|
|
android:title="@string/sms_port"
|
|
android:defaultValue="5432"
|
|
android:numeric="decimal"
|
|
/>
|
|
</PreferenceScreen>
|
|
|
|
-->
|
|
</PreferenceScreen>
|