写点什么

Meterial Design 常见控件的使用(八):CardView

用户头像
Android架构
关注
发布于: 5 小时前

30dp 的 Elevation(阴影).png


  • app:contentPadding CardView 子布局与 CardView 边界



ContentPadding 为 10dp 效果 背景为红


  • app:cardUseCompatPadding 设置内边距



cardUseCompatPadding=“true”.png



cardUseCompatPadding_false.png


CardView 使用方法


=======================================================================


当前 IDE:Android Studio 2.2 正式版


jdk1.8.102


compileSdkVersion 25


buildToolsVersion “25.0.2”

gradle 导包

dependencies {


...


compile 'com.android.support:cardview-v7:25.2.0'


}


CardView 是通常是定义在布局文件中:


<RelativeLayout


xmlns:android="http://schemas.android.com/apk/res/android"


xmlns:app="http://schemas.android.com/apk/res-auto"


xmlns:tools="http://schemas.android.com/tools"


android:id="@+id/activity_main"


android:layout_width="match_parent"


android:layout_height="match_parent"


android:gravity="center_vertical|center_horizontal"


android:paddingBottom="@dimen/activity_vertical_margin"


android:paddingLeft="@dimen/activity_horizontal_margin"


android:paddingRight="@dimen/activity_horizontal_margin"


android:paddingTop="@dimen/activity_vertical_margin"


tools:context="com.minminaya.cardview_learning.MainActivity">


<android.support.v7.widget.CardView


android:id="@+id/w"


android:layout_width="wrap_content"


android:layout_height="wrap_content"


app:cardCornerRadius="10dp"


app:cardElevation="10dp">


<ImageView


android:layout_width="wrap_content"


android:layout_height="wrap_content"


android:layout_gravity="center"


android:src="@mipmap/me"/>


</android.support.v7.widget.CardView>


</RelativeLayout>


通常情况下,只需要 radius 与 elevation 就可以达到很漂亮的卡片效果,甚至悬浮式的


当然,也可以在 code 中使用:


public void setRadius(float radius)


public void setContentPadding


public void setUseCompatPadding(boolean useCompatPadding)


public void setCardBackgroundColor(@ColorInt int color)


...


高级效果 波纹点击(像点击 Button 那样)


=================================================================================


  • 默认 CardView 的 android:clickable 属性是 false 的,也就是默认不可以点击,没有任何触摸反馈


实现方法:


在 CardView 布局文件节点添加


android:clickable="true"


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


gif 图录了看不出来就不放图了 QAQ


注意 对低版本的兼容处理


=======================================================================


CardView 在 API 21 以下,圆角效果会丢失:


<android.support.v7.widget.CardView


android:layout_width="wrap_content"


android:layout_height="wrap_content"


app:cardCornerRadius="25dp" >


<ImageView


android:layout_width="wrap_content"


android:layout_height="wrap_content"


android:layout_gravity="center"


android:src="@mipmap/me"/>


</android.support.v7.widget.CardView>


不同安卓版本的效果:



Android7.0.png



Android4.4.png


  • 可以看出很明显 API


《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》
浏览器打开:qq.cn.hn/FTe 免费领取
复制代码


19(4.4)出现很大的问题:虽然有圆角效果,但是图片四周是方的

解决方法:

  • 在 CardView 布局里添加 cardPreventCornerOverlap(默认是 true)属性,值为 false


cardPreventCornerOverlap 官方文档的意思是说在 API20 及更低版本中添加内边距,其实这个属性是为了防止卡片内容和边角的重叠


加了之后变成了这样:



cardPreventCornerOverlap 为 false

!!!!预警

这和以前竟然不一样了,以前是图片的直角压在了卡片圆角上,而且直角还是在 CardView 外面,好吧,估计是 Android 官方优化了一下,现在是卡片效果但是会多出一条白边,啊哈哈哈哈哈啊


大召唤术。。。。借用一张图---------

用户头像

Android架构

关注

还未添加个人签名 2021.10.31 加入

还未添加个人简介

评论

发布
暂无评论
Meterial Design常见控件的使用(八):CardView