如何在Android中的EditTextPreference中更改标题的字体大小?

时间:2012-05-18 01:43:55

标签: android android-preferences

我想减少EditTextPreference中标题的字体大小。 有人知道怎么做吗?

2 个答案:

答案 0 :(得分:2)

试试这个,

<EditText 
    android:text="EditText" 
    android:layout_width="fill_parent" 
    android:layout_height="20dp" 
    android:background="#FFFFFF"
    android:style="@android:style/TextAppearance.Small"
/>

答案 1 :(得分:0)

我是从here

这样做的

Prefrence Screen:

<PreferenceCategory
android:key="prefcategory1"
android:title="GENERAL SETTINGS..." >

<CheckBoxPreference
    android:defaultValue="false"
    android:enabled="true"
    android:key="checkBoxdelete"
    android:layout="@layout/mylayout"     <!--linking it to mylayout.xml -->
    android:summary="Deletes old messages as limits are reached"
    android:title="Delete old messages" />
</PreferenceCategory>

mylayout.xml

<TextView android:id="@+android:id/title"
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:paddingLeft="8dp"
android:textColor="#FFFFFF"
android:textSize="30px"
android:textStyle="bold"/>  

<TextView android:id="@+android:id/summary"
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:paddingLeft="8dp"
android:textColor="#FFFFFF"
android:textSize="20px"
android:textStyle="bold"/>

通过使用此文本,您可以增加或减少字体大小