5
0
mirror of https://github.com/cwinfo/envayasms.git synced 2024-09-19 22:02:31 +00:00
envayasms/res/xml/prefs.xml

43 lines
1.5 KiB
XML
Raw Normal View History

2010-10-04 00:11:48 +00:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference
android:key="server_url"
android:title="Server URL"
android:defaultValue=""
></EditTextPreference>
2010-10-04 00:11:48 +00:00
<EditTextPreference
android:key="phone_number"
android:title="Your Phone Number"
android:defaultValue=""
></EditTextPreference>
<EditTextPreference
android:key="password"
android:title="Password"
android:password="true"
></EditTextPreference>
<ListPreference
android:key="outgoing_interval"
android:title="Poll interval"
android:defaultValue="60"
android:entries="@array/check_intervals"
android:entryValues="@array/check_intervals_values"
></ListPreference>
<CheckBoxPreference
android:key="launch_on_boot"
android:title="Launch automatically?"
android:summaryOff="KalSMS will not open when phone boots (but will still forward SMS)"
android:summaryOn="KalSMS will open when phone boots"
></CheckBoxPreference>
<CheckBoxPreference
android:key="keep_in_inbox"
android:title="Keep new messages?"
android:summaryOff="Incoming SMS will not be stored in Messaging inbox"
android:summaryOn="Incoming SMS will be stored in Messaging inbox"
></CheckBoxPreference>
2010-10-04 00:11:48 +00:00
</PreferenceScreen>