xhg221

Results 5 comments of xhg221

我也遇到这个问题了,手机是红米Note2 ,Android 5.0.2,;日历的高度会变大

问题解决了(在小米手机,华为手机已经试验过暂无出现日历高度变大问题); 在MonthView中进行修改: @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int widthMode = MeasureSpec.getMode(widthMeasureSpec); int widthSize = MeasureSpec.getSize(widthMeasureSpec); int heightMode = MeasureSpec.getMode(heightMeasureSpec); int heightSize = MeasureSpec.getSize(heightMeasureSpec); if(widthMode == MeasureSpec.AT_MOST){ widthSize...

是,你的项目中,列表为空时,都无法展示空状态,你可以试一下(请求时,直接将size写最大) 辛苦啦,期待上线

> 因为res为null,没法获取到res.code,我项目是code,需要对某些code进行弹框拦截处理。 怎么解决? 我也遇到这个问题了,你的解决了吗?