These changes are finished on the settings activity side, need to be implemented on the application side Change-Id: I8a2d3a027d21f3a62a0cb84eaa0b60d9bcc73ede Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
23 lines
826 B
XML
23 lines
826 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<CheckBoxPreference
|
|
android:key="roll_again"
|
|
android:summary="@string/roll_again_summary"
|
|
android:title="@string/roll_again" />
|
|
<CheckBoxPreference
|
|
android:key="calc_successes"
|
|
android:title="@string/calc_successes" />
|
|
|
|
<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> |