展开后如何折叠 PreferenceCategory 项目的行?
How to collapse rows of PreferenceCategory items after expanding it?
我真的很想知道如何在单击箭头展开并查看其项目(开始、观看、值、国家/地区)后折叠 Settings PreferenceCategory。我可以展开列表,但找不到如何折叠展开的项目列表。这是我的首选项 xml 文件。
Preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<PreferenceCategory
android:key="settings"
android:title="Settings"
app:initialExpandedChildrenCount="0">
<SwitchPreference
android:defaultValue="false"
android:key="Start"
android:summary="Begin the race"
android:title="Start" />
<SwitchPreference
android:defaultValue="false"
android:key="watch"
android:summary="watches"
android:title="Watch" />
<EditTextPreference
android:defaultValue="1"
android:dialogTitle="Value"
android:enabled="false"
android:key="value"
android:title="Value"
app:useSimpleSummaryProvider="true" />
<EditTextPreference
android:defaultValue="fr"
android:dialogTitle="Country"
android:enabled="false"
android:key="country"
android:title="Country"
app:useSimpleSummaryProvider="true" />
</PreferenceCategory>
</PreferenceScreen>
所以目前我们还没有办法做到这一点。
我真的很想知道如何在单击箭头展开并查看其项目(开始、观看、值、国家/地区)后折叠 Settings PreferenceCategory。我可以展开列表,但找不到如何折叠展开的项目列表。这是我的首选项 xml 文件。
Preferences.xml
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<PreferenceCategory
android:key="settings"
android:title="Settings"
app:initialExpandedChildrenCount="0">
<SwitchPreference
android:defaultValue="false"
android:key="Start"
android:summary="Begin the race"
android:title="Start" />
<SwitchPreference
android:defaultValue="false"
android:key="watch"
android:summary="watches"
android:title="Watch" />
<EditTextPreference
android:defaultValue="1"
android:dialogTitle="Value"
android:enabled="false"
android:key="value"
android:title="Value"
app:useSimpleSummaryProvider="true" />
<EditTextPreference
android:defaultValue="fr"
android:dialogTitle="Country"
android:enabled="false"
android:key="country"
android:title="Country"
app:useSimpleSummaryProvider="true" />
</PreferenceCategory>
</PreferenceScreen>
所以目前我们还没有办法做到这一点。