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 に答える