diff options
author | Renard | 2016-04-05 01:52:13 -0300 |
---|---|---|
committer | Renard | 2016-04-05 01:52:13 -0300 |
commit | 90ca8b34d823eed19d26f6611716ca231d60424c (patch) | |
tree | 65d389b05acb542f14a8faba8abeaa7b36ae227e /app/src/main/res/xml/preferences.xml | |
download | BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.gz BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.tar.xz BaiApp-90ca8b34d823eed19d26f6611716ca231d60424c.zip |
Initial commit
Diffstat (limited to 'app/src/main/res/xml/preferences.xml')
-rw-r--r-- | app/src/main/res/xml/preferences.xml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml new file mode 100644 index 0000000..7f6d5b9 --- /dev/null +++ b/app/src/main/res/xml/preferences.xml @@ -0,0 +1,61 @@ +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> + <PreferenceCategory + android:title="Apariencia"> + <ListPreference + android:title="Tema" + android:summary="Requiere un reinicio de la aplicación" + android:key="pref_theme" + android:defaultValue="1" + android:entries="@array/pref_themes" + android:entryValues="@array/pref_themes_values" /> + <SwitchPreference + android:title="Usar fuente Mona" + android:key="setting_monafont" + android:summary="No es compatible con todas las versiones de Android" + android:defaultValue="true" /> + <SwitchPreference + android:title="Usar Mona.tff solo en BSS" + android:key="setting_mona_bbsonly" + android:defaultValue="true"/> + </PreferenceCategory> + <PreferenceCategory + android:title="Comportamiento"> + <SwitchPreference + android:title="Descargar imágenes solo con Wi-Fi" + android:key="setting_downloadOnlyWithWifi" + android:defaultValue="true" /> + <SwitchPreference + android:title="Ir al final al abrir un hilo" + android:key="setting_scrollatnewthread" + android:defaultValue="false" /> + <ListPreference + android:title="Respuestas por tema" + android:key="pref_lastreplies" + android:summary="Cantidad de respuestas que serán cargadas en la vista de tema" + android:defaultValue="1000" + android:entries="@array/pref_repliescount" + android:entryValues="@array/pref_repliescount_values"/> + <ListPreference + android:title="Respuestas en catálogo" + android:key="pref_repliesperthread" + android:summary="Cantidad de respuestas que se muestran en el catálogo" + android:defaultValue="5" + android:entries="@array/pref_catalog_replies" + android:entryValues="@array/pref_catalog_replies_values"/> + <ListPreference + android:title="Post recientes" + android:summary="Cantidad de post a cargar" + android:key="pref_lastreplies_limit" + android:entries="@array/pref_lastreplies_desc" + android:entryValues="@array/pref_lastreplies_values" + android:defaultValue="30"/> + </PreferenceCategory> + <PreferenceCategory + android:title="Formulario de respuesta"> + <EditTextPreference + android:title="Contraseña" + android:summary="Usada para la eliminación de tus posts" + android:key="pref_password" /> + + </PreferenceCategory> +</PreferenceScreen>
\ No newline at end of file |