Using a deprecated clipRect() in 1.2.6
In the following code in WeekView.java, this line number 591
canvas.clipRect(mHeaderColumnWidth, mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight/2, getWidth(), getHeight(), Region.Op.REPLACE);
must be replaced by canvas.clipRect(mHeaderColumnWidth, mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight/2, getWidth(), getHeight());
since the usage of Region.Op.REPLACE is no longer supported.
This has been addressed in the 2 most recent pull requests, just desperately needs to be merged!
Hi, thanks for the reply!
Will this be merged into master and the 1.2.6 release? It seems like the owner hasn't been really active, recently.