我正在使用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"/>
答案 0 :(得分:0)
<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);
答案 1 :(得分:0)
//get month and get how many days in current month
Calendar calendar = Calendar.getInstance();
int daysInMonth = calendar.getActualMaximum(Calendar.DAY_OF_MONTH);
cal.setMaxDate(daysInMonth);