Android Honeycomb CalendarView 不尊重 xml 属性
我的 xml 中有以下代码:
<CalendarView
android:id="@+id/main_calendar"
android:showWeekNumber="false"
android:layout_width="700dp"
android:layout_height="650dp"
android:layout_gravity="center"
android:selectedWeekBackgroundColor="@color/black_shadow"
/>
宽度和高度受到尊重,但 showWeekNumber 和 selectedWeekBackgroundColor 不受到尊重。它仍然显示周数,并且所选周仍然是默认的蓝色。
I have the following code in my xml:
<CalendarView
android:id="@+id/main_calendar"
android:showWeekNumber="false"
android:layout_width="700dp"
android:layout_height="650dp"
android:layout_gravity="center"
android:selectedWeekBackgroundColor="@color/black_shadow"
/>
The width and height are respected, but showWeekNumber and selectedWeekBackgroundColor are not. It still shows the week number and the selected week is still the default blue color.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来这个控制被破坏了。
Looks like this control is broken.
另外值得注意的是:您必须显式提供layout_width和layout_height(不是match_parent / fill_parent / wrap_content)。我在这里介绍过:
Android 3.0 日历视图
Also worth noting: you must explicitly provide the layout_width and layout_height (not match_parent / fill_parent / wrap_content). I covered it here:
Android 3.0 CalendarView