Android Honeycomb CalendarView 不尊重 xml 属性

发布于 2024-12-02 08:52:14 字数 400 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伊面 2024-12-09 08:52:14

看起来这个控制被破坏了。

Looks like this control is broken.

辞旧 2024-12-09 08:52:14

另外值得注意的是:您必须显式提供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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文