Organized settings

captchafix
Florens Douwes 11 years ago
parent aa6f1feacf
commit ce8a842f95
  1. 3
      Clover/app/src/main/res/values/strings.xml
  2. 15
      Clover/app/src/main/res/xml/preference.xml

@ -118,7 +118,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<string name="preference_watch_settings">Thread watcher</string> <string name="preference_watch_settings">Thread watcher</string>
<string name="preference_pass_settings">4chan pass</string> <string name="preference_pass_settings">4chan pass</string>
<string name="preference_general">General</string> <string name="preference_browsing">Browsing</string>
<string name="preference_posting">Posting</string>
<string name="preference_theme">Theme</string> <string name="preference_theme">Theme</string>
<string-array name="preference_themes"> <string-array name="preference_themes">

@ -43,7 +43,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:targetPackage="org.floens.chan"/> android:targetPackage="org.floens.chan"/>
</Preference> </Preference>
<PreferenceCategory android:title="@string/preference_general"> <PreferenceCategory android:title="@string/preference_browsing">
<ListPreference <ListPreference
android:key="preference_theme" android:key="preference_theme"
android:defaultValue="light" android:defaultValue="light"
@ -57,6 +57,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:key="preference_open_link_confirmation" android:key="preference_open_link_confirmation"
android:title="@string/preference_open_link_confirmation"/> android:title="@string/preference_open_link_confirmation"/>
<CheckBoxPreference
android:defaultValue="true"
android:key="preference_auto_refresh_thread"
android:title="@string/preference_auto_refresh_thread"/>
<CheckBoxPreference <CheckBoxPreference
android:defaultValue="true" android:defaultValue="true"
android:key="preference_image_auto_load" android:key="preference_image_auto_load"
@ -68,16 +73,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:dependency="preference_image_auto_load" android:dependency="preference_image_auto_load"
android:title="@string/preference_autoplay"/> android:title="@string/preference_autoplay"/>
<CheckBoxPreference
android:defaultValue="true"
android:key="preference_auto_refresh_thread"
android:title="@string/preference_auto_refresh_thread"/>
<CheckBoxPreference <CheckBoxPreference
android:defaultValue="false" android:defaultValue="false"
android:key="preference_force_phone_layout" android:key="preference_force_phone_layout"
android:title="@string/preference_force_phone_layout"/> android:title="@string/preference_force_phone_layout"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/preference_posting">
<EditTextPreference <EditTextPreference
android:key="preference_default_name" android:key="preference_default_name"
android:title="@string/preference_default_name"/> android:title="@string/preference_default_name"/>
@ -85,6 +87,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:key="preference_default_email" android:key="preference_default_email"
android:title="@string/preference_default_email"/> android:title="@string/preference_default_email"/>
</PreferenceCategory> </PreferenceCategory>
<PreferenceCategory <PreferenceCategory
android:key="group_about" android:key="group_about"
android:title="@string/preference_about"> android:title="@string/preference_about">

Loading…
Cancel
Save