Android Calendarview Font Size
I am using Xamarin for building android application this is my first app. I have a CalendarView I need to change the font size and style of the day. I tried the below code the font
Solution 1:
All you need to do is reference a different style that includes a slightly bigger font for the size of the date. I'm not exactly sure why yours isn't working using the styles.xml as it seems correct. However I would just simply add it to the XML attributes for the calendar. This will be fine as presumably you're only using one Calendar and therefore it isn't really inefficient. Add this line to the calendar XML:
android:dateTextAppearance="@android:style/TextAppearance.Large"
Hope this helps you!
Solution 2:
You should change "android:dateTextAppearance", you can check this reference too ;) CalendarView
also you can try this
Post a Comment for "Android Calendarview Font Size"