設定画面の xml で、カスタム レイアウトを拡張したいと考えています。これが私の設定画面xmlです:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
-----
-----
<Preference
android:key="preview"
android:layout="@layout/redesign_preview_pref_layout"
android:persistent="false"
android:title="@string/setting_preview" />
「プレビュー」設定を除いて、この画面ではすべてが機能しています。「redesign_preview_pref_layout」レイアウトを膨らませていません。
「redesign_preview_pref_layout」レイアウト コードは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="15dp" >
<TextView
android:id="@+id/previewScreen"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@color/half_transpernt_button_color"
android:gravity="center"
android:text="@string/pref_preview_button"
android:textColor="@android:color/white"
android:textSize="16sp" />
</LinearLayout>
誰かが私が間違っていることを教えてくれますか? 助けてくれてありがとう