gpt4 book ai didi

安卓。 CalendarView...一次只显示一个月的日历

转载 作者:太空宇宙 更新时间:2023-11-03 11:05:52 28 4
gpt4 key购买 nike

我正在使用 CalendarView,我想一次只查看一个月的日历并滚动查看下个月,但 CalendarView 一次显示整个月。下面是我的代码。

<CalendarView
android:id="@+id/calendView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@+id/header"
android:layout_marginTop="60dp"
android:shownWeekCount="5"/>

最佳答案

坦率地说,我没有找到任何特定的方法来做同样的事情。但是你可以通过将布局高度设置为大约 200dp 到 300dp 来换一种方式。

<CalendarView
android:layout_width="match_parent"
android:layout_height="250dp"
android:id="@+id/calendarView"
android:layout_gravity="right"
/>

如果你想限制你的日历显示日期这里是代码

CalendarView calendarview;
calendarView = (CalendarView)findViewById(R.id.calendarView);
long a = calendarView.getDate();
calendarView.setMaxDate(a);

关于安卓。 CalendarView...一次只显示一个月的日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33810905/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com