当我打开列表弹出窗口时,我看不到ListPreference的标题。我使用android:dialogTitle="nectionType"
,但对话标题的顶部没有显示任何内容。
有什么建议为什么会发生这种情况?感谢。
我使用的xml代码:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<PreferenceCategory
android:title="deneme1"
android:key="deneme1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListPreference
android:key="cConnectionType"
android:title="BANANA2"
android:summary="OMG"
android:dialogTitle="nectionType"
android:entries="@array/syncFrequency"
android:entryValues="@array/syncFrequencyValues"
android:defaultValue="99" />
</PreferenceCategory>
</PreferenceScreen>