【发布时间】:2011-03-17 04:21:56
【问题描述】:
<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>
我需要更改PrefereceCategory、CheckboxPreference 和android:summary 的android:title 字体大小。这些标签没有任何android:textSize 属性。谁能帮我怎么弄到这个?
【问题讨论】:
标签: android android-layout android-preferences