如何改变calendarView android的字体大小?

时间:2015-04-28 08:40:40

标签: android android-widget calendarview

您好我正在使用日历视图。我希望它的文本是12sp,但我无法设置它。我试过android:dateTextAppearance =“@ android:style / TextAppearance.Small” 但它没有用。

提前致谢

1 个答案:

答案 0 :(得分:0)

你应该可以设置

android:dateTextAppearance="@android:style/TextAppearance.Small"

虽然除非你覆盖,否则你将无法设置小的大小。在样式中创建更新的样式,该样式将覆盖父“@android:style / TextAppearance.Small”。 (即styles / style.xml)

<style name="SmallerCalendarText" parent="@android:style/TextAppearance.Small">
    <item name="android:textSize">8dp</item>
</style>

现在在CalendarView小部件的布局xml文件中:

    <CalendarView
        ...
        android:dateTextAppearance="@style/SmallerCalendarText" />