mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-09 13:51:45 +08:00
74 lines
2.1 KiB
XML
74 lines
2.1 KiB
XML
<?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">
|
|
<EditTextPreference
|
|
app:defaultValue="-console -log"
|
|
app:key="arguments"
|
|
app:layout="@layout/edit_text_preference"
|
|
app:title="@string/game_settings_command_line"
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:key="use_volume_buttons"
|
|
app:layout="@layout/switch_preference"
|
|
app:title="@string/game_settings_volume_buttons" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:key="enable_yapb_bots"
|
|
app:layout="@layout/switch_preference"
|
|
app:title="@string/game_settings_yapb_bots"
|
|
app:defaultValue="true"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:key="separate_libraries"
|
|
app:layout="@layout/switch_preference"
|
|
app:title="@string/preferences_separate_libraries"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<ListPreference
|
|
app:key="package_name"
|
|
app:layout="@layout/list_preference"
|
|
app:title="@string/preferences_package_name"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<ListPreference
|
|
app:key="client_package"
|
|
app:layout="@layout/list_preference"
|
|
app:title="@string/preferences_client_package"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<ListPreference
|
|
app:key="server_package"
|
|
app:layout="@layout/list_preference"
|
|
app:title="@string/preferences_server_package"
|
|
app:useSimpleSummaryProvider="true"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<Preference
|
|
app:key="source_url"
|
|
app:layout="@layout/edit_text_preference"
|
|
app:title="@string/source_repo"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<Preference
|
|
app:key="source_branch"
|
|
app:layout="@layout/edit_text_preference"
|
|
app:title="@string/source_branch"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<Preference
|
|
app:key="source_commit"
|
|
app:layout="@layout/edit_text_preference"
|
|
app:title="@string/source_commit"
|
|
app:isPreferenceVisible="false" />
|
|
|
|
<Preference
|
|
app:key="downloaded_at"
|
|
app:layout="@layout/edit_text_preference"
|
|
app:title="@string/downloaded_at"
|
|
app:isPreferenceVisible="false" />
|
|
</PreferenceScreen>
|