summaryrefslogtreecommitdiffstats
path: root/res/xml
diff options
context:
space:
mode:
authorAdrian Roos <roosa@google.com>2015-06-19 19:59:53 -0700
committerAdrian Roos <roosa@google.com>2015-06-19 20:01:56 -0700
commitba59f5b222190f423d20298e0328ec3f8c1c45cd (patch)
tree79587f3712490d2424e10c4ec22164881c600692 /res/xml
parentd63e696902cbefaa7361aaa16e6b20d0fe593cdb (diff)
downloadpackages_apps_Settings-ba59f5b222190f423d20298e0328ec3f8c1c45cd.zip
packages_apps_Settings-ba59f5b222190f423d20298e0328ec3f8c1c45cd.tar.gz
packages_apps_Settings-ba59f5b222190f423d20298e0328ec3f8c1c45cd.tar.bz2
Work around improper ListView recycling in TrustAgentSettings
Previously, the views for our SwitchPreference would never be recycled because they weren't present in onCreate, which broke accessibility events. Bug: 21837103 Change-Id: I01f40b4e6df6d807b77f985116a57334e4ca4868
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/trust_agent_settings.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/res/xml/trust_agent_settings.xml b/res/xml/trust_agent_settings.xml
index e9374f3..2bf71fb 100644
--- a/res/xml/trust_agent_settings.xml
+++ b/res/xml/trust_agent_settings.xml
@@ -16,4 +16,9 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:key="trust_agents"
- android:title="@string/manage_trust_agents" />
+ android:title="@string/manage_trust_agents">
+
+ <!-- Needed so PreferenceGroupAdapter allows SwitchPreference to be
+ recycled. Removed in onResume -->
+ <SwitchPreference android:key="dummy_preference" />
+</PreferenceScreen>