OmniMDE:AppEinstellungen: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
MF (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „<?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" xmlns:tools="http://schemas.android.com/tools" android:key="PREFSCREEN"> <PreferenceCategory android:key="PREF_CAT_CONNECTION" android:title="Verbindung"> <EditTextPreference android:defaultValue="http://omnimde.azurewebsites.net/OmniMDE…“) |
(kein Unterschied)
|
Version vom 5. Mai 2022, 08:03 Uhr
<?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" xmlns:tools="http://schemas.android.com/tools" android:key="PREFSCREEN">
<PreferenceCategory
android:key="PREF_CAT_CONNECTION"
android:title="Verbindung">
<EditTextPreference
android:defaultValue="http://omnimde.azurewebsites.net/OmniMDE"
android:hint="http://omnimde.azurewebsites.net/OmniMDE"
android:key="PREF_API_URI"
android:icon="@android:drawable/ic_menu_edit"
android:text="http://omnimde.azurewebsites.net/OmniMDE"
android:title="OmniMDE API-Url"
android:visibility="visible"
tools:text="http://omnimde.azurewebsites.net/OmniMDE" />
<Preference
android:icon="@android:drawable/ic_menu_rotate"
android:key="VERBINDUNGSTEST"
android:summary="Vollständige API Sync. (inkl. datenreset)"
android:title="API Synchronisation" />
<SwitchPreference
app:isPreferenceVisible="false"
android:defaultValue="true"
android:key="PREF_SHOWWELCOMEINTRO"
android:title="Willkommensmodus" />
</PreferenceCategory>
<PreferenceCategory
android:key="PREF_CAT_GLOBAL"
android:title="Geräteeinstellungen">
<SwitchPreference
android:defaultValue="false"
android:hint="false"
android:key="PREF_CAMERA_SCAN"
android:summary="Kamerascan bei Scannergeräten aktivieren?"
android:title="Kamerascan" />
<SwitchPreference
android:defaultValue="true"
android:hint="true"
android:key="PREF_VIBRATE_ON_SCAN"
android:summary="Bei Scan vibrieren?"
android:title="Scanvibration" />
<SwitchPreference
android:defaultValue="false"
android:hint="false"
android:key="PREF_BEEP_ON_ERROR"
android:summary="Bei Fehlern Beep abspielen?"
android:title="Beep bei Fehler" />
</PreferenceCategory>
<PreferenceCategory
android:key="PREF_CAT_SYSTEM"
android:title="System Einstellungen">
<EditTextPreference
android:defaultValue="3000"
android:dialogTitle="API-Ping Timer"
android:inputType="number"
android:key="PREF_TIMER_API_PING"
android:summary="3000"
android:title="API-Ping Timer (ms)" />
<EditTextPreference
android:defaultValue="60000"
android:dialogTitle="API-Grundeinstellungen Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_SETTINGS"
android:summary="60000"
android:title="API-Grundeinstellungen Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="15000"
android:dialogTitle="API-Nachrichten Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_MESSAGES"
android:summary="15000"
android:title="API-Nachrichten Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="15000"
android:dialogTitle="Bilder Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_IMAGES"
android:summary="15000"
android:title="Bilder Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="2000"
android:dialogTitle="Lagerbuchungen Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_LAGERBUCHUNGEN"
android:summary="2000"
android:title="Lagerbuchungen Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="2000"
android:dialogTitle="Belegerfassung Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_BELEGERFASSUNG"
android:summary="2000"
android:title="Belegerfassung Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="2000"
android:dialogTitle="Lagerplatzumbuchungen Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_LAGERPLATZUMBUCHUNGEN"
android:summary="2000"
android:title="Lagerplatzumbuchungen Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="2000"
android:dialogTitle="Inventur Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_INVENTUR"
android:summary="2000"
android:title="Inventur Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="2000"
android:dialogTitle="Rueckmeldungen Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_RUECKMELDUNGEN"
android:summary="2000"
android:title="Rueckmeldungen Sync. Timer (ms)" />
<EditTextPreference
android:defaultValue="2000"
android:dialogTitle="Gesamtfertigmeldungen Sync. Timer"
android:inputType="number"
android:key="PREF_TIMER_API_GESAMTFERTIGMELDUNGEN"
android:summary="2000"
android:title="Gesamtfertigmeldungen Sync. Timer (ms)" />
</PreferenceCategory>
<PreferenceCategory
android:key="PREF_CAT_MISC"
android:title="Verschiedenes">
<Preference
android:icon="@android:drawable/ic_menu_search"
android:key="SCANTEST"
android:summary="Scanfunktion und Barcodes testen"
android:title="Testscan" />
<Preference
android:icon="@android:drawable/ic_menu_help"
android:key="WIKI"
android:summary="Doumentation / Wiki"
android:title="Hilfe" />
<Preference
android:icon="@android:drawable/ic_menu_info_details"
android:key="ABOUT"
android:summary="Versionsinfo, Log, Geräteeigenschaften etc."
android:title="Über..." />
</PreferenceCategory>
</PreferenceScreen>