CardView has extra margin in each edge on Pre-Lollipop

前端 未结 7 864
闹比i
闹比i 2020-12-24 14:05

Here are two pictures.

on Lollipop: \"on

on Pre-Lollipop:

7条回答
  •  轮回少年
    2020-12-24 14:21

    just add this in your code for pre lollipop versions:

    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP)
        {
            cardView.setMaxCardElevation(0f);
            cardView.setPreventCornerOverlap(false);
        }
    

提交回复
热议问题