CardView兼容处理

在低版本中设置了 CardElevation 之后 CardView 会自动留出空间供阴影显示
Lollipop 之后则需要手动设置 Margin 边距来预留空间

解决:

app:cardUseCompatPadding="true"

需要CardView点击带有系统默认ripple效果,添加属性:

android:clickable="true"
android:foreground="?attr/selectableItemBackground"

http://www.jianshu.com/p/07097b562acb
https://www.ctolib.com/changliugang-CardView.html

你可能感兴趣的:(CardView兼容处理)