0

我想要一个带有标题和摘要的全屏 PreferenceScreen。但是,当我提供摘要文本时,它不会显示:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
    android:title="My Title"
    android:summary="My Summary">
......

</PreferenceScreen>
4

1 回答 1

0

在你有的地方添加这个......

<PreferenceCategory android:title="Title"
                    android:key="title_category_key">

    <PreferenceScreen
            android:key="my_title_key"
            android:title="Main Settings"
            android:persistent="false" >
    </PreferenceScreen>

        <EditTextPreference
                android:name="title"
                android:defaultValue="@string/title"
                android:title="title"
                android:key="title_key"
                android:editable="false"
                android:focusable="false"/>

 </PreferenceCategory>

于 2013-01-22T15:36:32.940 回答