notecipher / app / res / xml / settings.xml @ 53196bc0
History | View | Annotate | Download (1.09 KB)
| 1 | <?xml version="1.0" encoding="utf-8"?>
 | 
|---|---|
| 2 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> | 
| 3 |         <PreferenceCategory
 | 
| 4 | android:title="@string/general_settings" > | 
| 5 |                          <Preference 
 | 
| 6 | android:key="cacheword_timeout_seconds" | 
| 7 | android:title="@string/change_timeout_prompt_title" /> | 
| 8 |                          <EditTextPreference
 | 
| 9 | android:key="encrypted_secrets" | 
| 10 | android:title="@string/change_passphrase" | 
| 11 | android:dialogTitle="@string/change_passphrase" /> | 
| 12 |                          <CheckBoxPreference
 | 
| 13 | android:key="use_lines_in_notes" | 
| 14 | android:title="@string/use_lines_in_notes" | 
| 15 | android:summary="@string/use_lines_in_notes_summ" | 
| 16 | android:defaultValue="@bool/notecipher_uselines_default" /> | 
| 17 |                          <CheckBoxPreference
 | 
| 18 | android:key="cacheword_vibrate" | 
| 19 | android:title="@string/vibrate_when_unlocked" | 
| 20 | android:summary="@string/vibrate_when_unlocked_summ" | 
| 21 | android:defaultValue="@bool/cacheword_vibrate_default" /> | 
| 22 |         </PreferenceCategory>
 | 
| 23 | </PreferenceScreen> |