1 <?xml version=
"1.0" encoding=
"utf-8"?>
2 <PreferenceScreen xmlns:
android=
"http://schemas.android.com/apk/res/android">
3 <PreferenceCategory android:
title=
"@string/pref_parameters">
4 <EditTextPreference android:
title=
"@string/pref_server" android:
summary=
"@string/pref_server_summary" android:
enabled=
"true" android:
key=
"connection.server"></EditTextPreference>
5 <EditTextPreference android:
title=
"@string/pref_port" android:
summary=
"@string/pref_port_summary" android:
enabled=
"true" android:
defaultValue=
"4701" android:
key=
"connection.port" android:
digits=
"0123456789"></EditTextPreference>
6 <EditTextPreference android:
title=
"@string/pref_login" android:
summary=
"@string/pref_login_summary" android:
enabled=
"true" android:
defaultValue=
"admin" android:
key=
"connection.login"></EditTextPreference>
7 <EditTextPreference android:
enabled=
"true" android:
key=
"connection.password" android:
title=
"@string/pref_password" android:
summary=
"@string/pref_password_summary" android:
password=
"true"></EditTextPreference>
8 <CheckBoxPreference android:
title=
"@string/pref_encrypt" android:
key=
"connection.encrypt" android:
enabled=
"true" android:
summaryOn=
"@string/pref_encrypt_summary_enabled" android:
summaryOff=
"@string/pref_encrypt_summary_disabled" android:
defaultValue=
"false"></CheckBoxPreference>
10 <PreferenceCategory android:
title=
"@string/pref_scheduler" android:
enabled=
"true">
11 <CheckBoxPreference android:
summaryOn=
"@string/pref_scheduler_enabled" android:
key=
"global.scheduler.enable" android:
title=
"@string/pref_scheduler_enable" android:
summaryOff=
"@string/pref_scheduler_disabled" android:
defaultValue=
"false"/>
12 <EditTextPreference android:
title=
"@string/pref_scheduler_activation_interval" android:
summary=
"@string/pref_scheduler_activation_interval_summary" android:
enabled=
"true" android:
defaultValue=
"15" android:
key=
"global.scheduler.interval" android:
digits=
"0123456789" android:
dependency=
"global.scheduler.enable"></EditTextPreference>
13 <EditTextPreference android:
title=
"@string/pref_scheduler_activation_duration" android:
summary=
"@string/pref_scheduler_activation_duration_summary" android:
enabled=
"true" android:
defaultValue=
"1" android:
key=
"global.scheduler.duration" android:
digits=
"0123456789" android:
dependency=
"global.scheduler.enable"></EditTextPreference>
14 <CheckBoxPreference android:
summaryOn=
"@string/pref_scheduler_daily_enabled" android:
key=
"global.scheduler.daily.enable" android:
title=
"@string/pref_scheduler_daily_enabled" android:
summaryOff=
"@string/pref_scheduler_daily_disabled" android:
defaultValue=
"false" android:
dependency=
"global.scheduler.enable"/>
15 <org.netxms.ui.android.main.settings.TimePreference android:
key=
"global.scheduler.daily.on" android:
title=
"@string/pref_scheduler_daily_on" android:
dependency=
"global.scheduler.daily.enable"/>
16 <org.netxms.ui.android.main.settings.TimePreference android:
key=
"global.scheduler.daily.off" android:
title=
"@string/pref_scheduler_daily_off" android:
dependency=
"global.scheduler.daily.enable"/>