Material 日历视图高度环绕问题

Material Calendar View Height wrapping issue

我正在使用 material calendarview,它阻挡了屏幕高度的 3/4。我自定义了屏幕高度,但它仍然在日期图块和日历视图高度之间有一些填充。

下面我附上了截图现在看起来如何:

经过长时间的 onMeasure() 方法库工作,我终于找到了。

measuredHeight = (int)(measuredHeight/1.5);
setMeasuredDimension(
            //We clamp inline because we want to use un-clamped versions on the children
            clampSize(measuredWidth, widthMeasureSpec),
            clampSize(measuredHeight, heightMeasureSpec));