【发布时间】:2015-04-28 08:40:39
【问题描述】:
您好,我正在使用日历视图。我希望它的文本为 12sp,但我无法设置它。我试过 android:dateTextAppearance="@android:style/TextAppearance.Small" 但它不起作用。
提前致谢
【问题讨论】:
-
这并没有解决我的问题 Farouk。又是同样的问题
标签: android android-widget calendarview
您好,我正在使用日历视图。我希望它的文本为 12sp,但我无法设置它。我试过 android:dateTextAppearance="@android:style/TextAppearance.Small" 但它不起作用。
提前致谢
【问题讨论】:
标签: android android-widget calendarview
你应该可以设置
android:dateTextAppearance="@android:style/TextAppearance.Small"
尽管除非您覆盖,否则您将无法设置 small 的大小。在您的样式中创建一个更新的样式,它会覆盖父“@android:style/TextAppearance.Small”。 (即样式/style.xml)
<style name="SmallerCalendarText" parent="@android:style/TextAppearance.Small">
<item name="android:textSize">8dp</item>
</style>
现在在 CalendarView 小部件的布局 xml 文件中:
<CalendarView
...
android:dateTextAppearance="@style/SmallerCalendarText" />
【讨论】: