26 lines
966 B
XML
26 lines
966 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="start_on_boot"
|
|
android:summary="@string/start_on_boot_about"
|
|
android:title="@string/start_on_boot" >
|
|
</CheckBoxPreference>
|
|
|
|
<PreferenceScreen android:title="@string/about" >
|
|
<com.TwentyCodes.android.LocationRinger.ui.TextViewPreference android:title="@string/hello" />
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceCategory android:title="@string/contact_us" >
|
|
<Preference
|
|
android:key="email"
|
|
android:summary="@string/email_about"
|
|
android:title="@string/email" >
|
|
</Preference>
|
|
</PreferenceCategory>
|
|
<PreferenceCategory android:title="@string/version_info" >
|
|
<com.TwentyCodes.android.exception.VersionInformationPreference />
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen> |