Como posso alterar o tamanho da fonte no PreferenceScreen

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory
        android:title="First Category"
        android:textSize="20px">

        <CheckBoxPreference
            android:title="Checkbox Preference"
            android:defaultValue="false"
            android:summary="This preference can be true or false"
            android:key="checkboxPref" />

    </PreferenceCategory>
</PreferenceScreen>

Eu preciso mudarandroid:title tamanho da fonte dePrefereceCategory, CheckboxPreference eandroid:summary Tamanho. Essas tags não têm nenhumandroid:textSize attribute. Alguém pode me ajudar a conseguir isso?

questionAnswers(6)

yourAnswerToTheQuestion