diff options
author | wongma7 <wongma7@users.noreply.github.com> | 2015-08-25 13:31:07 -0400 |
---|---|---|
committer | wongma7 <wongma7@users.noreply.github.com> | 2015-08-25 13:31:07 -0400 |
commit | 327945f3b8aa56f77559a25bc9160dae0a0cc6d2 (patch) | |
tree | c92d1450ee4930cf2b91a7b34efa5c97cee826b7 /app/src/main/res/xml | |
parent | eced1dd314ba651f862396c340492c6f2d9da926 (diff) | |
parent | a73e8625f55e869ba0d74bfa370178c54be3662d (diff) |
Merge pull request #117 from zeapo/autofill
Autofill
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/autofill_config.xml | 8 | ||||
-rw-r--r-- | app/src/main/res/xml/preference.xml | 21 |
2 files changed, 28 insertions, 1 deletions
diff --git a/app/src/main/res/xml/autofill_config.xml b/app/src/main/res/xml/autofill_config.xml new file mode 100644 index 00000000..a604fc07 --- /dev/null +++ b/app/src/main/res/xml/autofill_config.xml @@ -0,0 +1,8 @@ +<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android" + android:description="@string/autofill_description" + android:accessibilityEventTypes="typeViewFocused|typeViewClicked|typeWindowStateChanged" + android:accessibilityFlags="flagDefault|flagRetrieveInteractiveWindows" + android:accessibilityFeedbackType="feedbackGeneric" + android:notificationTimeout="100" + android:canRetrieveWindowContent="true" + />
\ No newline at end of file diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index e4071c96..639fdfe1 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -70,11 +70,30 @@ android:summary="@string/pref_recursive_filter_hint" android:title="@string/pref_recursive_filter" /> </PreferenceCategory> + + <PreferenceCategory android:title="Autofill"> + <CheckBoxPreference + android:defaultValue="true" + android:key="autofill_enable" + android:title="@string/pref_autofill_enable_title"/> + <Preference + android:dependency="autofill_enable" + android:key="autofill_apps" + android:summary="@string/pref_autofill_apps_hint" + android:title="@string/pref_autofill_apps_title"/> + <CheckBoxPreference + android:dependency="autofill_enable" + android:defaultValue="true" + android:key="autofill_default" + android:summary="@string/pref_autofill_default_hint" + android:title="@string/pref_autofill_default_title"/> + </PreferenceCategory> + <PreferenceCategory android:title="Misc"> <CheckBoxPreference android:defaultValue="false" android:key="clear_clipboard_20x" android:summary="@string/pref_clear_clipboard_hint" - android:title="@string/pref_clear_clipboard" /> + android:title="@string/pref_clear_clipboard_title" /> </PreferenceCategory> </PreferenceScreen>
\ No newline at end of file |