diff options
author | Matthew Wong <wongma@protonmail.ch> | 2015-08-16 16:58:03 -0400 |
---|---|---|
committer | Matthew Wong <wongma@protonmail.ch> | 2015-08-16 16:58:03 -0400 |
commit | a73e8625f55e869ba0d74bfa370178c54be3662d (patch) | |
tree | c92d1450ee4930cf2b91a7b34efa5c97cee826b7 | |
parent | bc086220d24b85f7892e0ebb2ac36d36d2ea3ec3 (diff) |
Settings dependent on service enabled
-rw-r--r-- | app/src/main/res/xml/preference.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/main/res/xml/preference.xml b/app/src/main/res/xml/preference.xml index 1c977992..639fdfe1 100644 --- a/app/src/main/res/xml/preference.xml +++ b/app/src/main/res/xml/preference.xml @@ -77,10 +77,12 @@ 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" |