我想减小EditTextPreference
. 有人知道怎么做吗?
问问题
2106 次
2 回答
2
尝试这个,
<EditText
android:text="EditText"
android:layout_width="fill_parent"
android:layout_height="20dp"
android:background="#FFFFFF"
android:style="@android:style/TextAppearance.Small"
/>
于 2012-05-18T02:29:14.227 回答
0
我是从这里开始的
偏好屏幕:
<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"/>
通过使用此文本,您可以增加或减少字体大小
于 2013-12-02T05:37:18.527 回答