-1
我正在使用CalendarView
類在我的應用中插入日曆。我已經做了這樣的:如何在CalendarView中獲取當前月份?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<CalendarView
android:id="@+id/calendar_userCalendar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:clickable="true" />
</RelativeLayout>
有了這個,我可以看到日曆這樣的:
而且所有月份都見過! 我試圖當月編程這樣的過濾:
calendar = (CalendarView) inflatedLayout.findViewById(R.id.calendar_userCalendar);
Calendar cal = Calendar.getInstance();
int daysInMonth = cal.getActualMaximum(Calendar.DAY_OF_MONTH);
calendar.setMaxDate(daysInMonth);
但它仍然顯示了所有個月...我如何設置日曆顯示本月僅當月和過濾事件?
這樣做的竅門!謝謝! – Sonhja