学习使用Material Design控件(三)使用CardView实现卡片效果
本文主要介绍CardView的使用,CardView是继承自FrameLayout,使用比较简单,只需要用CardView包含其他View就可以实现卡片效果了。
实现效果如下:
加入依赖库
dependencies { …. compile 'com.android.support:cardview-v7:22.2.0' }
Layout布局
<android.support.v7.widget.CardView android:layout_width="match_parent" android:layout_height="wrap_content" app:cardCornerRadius="10dp" app:cardElevation="10dp" android:layout_marginBottom="@dimen/card_margin" android:layout_marginLeft="@dimen/card_margin" android:layout_marginRight="@dimen/card_margin"> <LinearLayout style="@style/CardView.Content" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/book1" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/book_title_1" android:textAppearance="@style/TextAppearance.AppCompat.Title" android:textColor="@color/primary_text" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="2dp" android:text="@string/book_description_1" android:textColor="@color/secondary_text" /> </LinearLayout> </LinearLayout> </android.support.v7.widget.CardView>
app:cardBackgroundColor 设置CardView背景颜色
app:cardCornerRadius 设置CardView圆角大小
app:cardElevation 设置CardView阴影高度
项目源码已发布到Github,以后慢慢加入其他控件的使用。
源码地址:MaterialDesignExample
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
- 学习使用Material Design控件(二)使用DrawerLayout实现侧滑菜单栏效果
- 学习使用Material Design控件(一)
- 微信小程序之MaterialDesign--input组件详解
- Material Design系列之Behavior实现Android知乎首页
- Material Design系列之Behavior上滑显示返回顶部按钮
- Material Design系列之Behavior实现支付密码弹窗和商品属性选择效果
- Material Design系列之自定义Behavior支持所有View
- Android5.0中Material Design的新特性
- Android App仿QQ制作Material Design风格沉浸式状态栏
- 学习使用Material Design控件(四)Android实现标题栏自动缩放、放大效果
相关文章
android 中 SQLiteOpenHelper的封装使用详解
这篇文章主要介绍了android 中 SQLiteOpenHelper的封装使用详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-02-02Android带进度条的文件上传示例(使用AsyncTask异步任务)
这篇文章主要介绍了Android带进度条的文件上传示例(使用AsyncTask异步任务),使用起来比较方便,将几个方法实现就行,感兴趣的小伙伴们可以参考一下。2016-11-11Android9.0 SystemUI 网络信号栏定制修改的流程解析
这篇文章主要介绍了Android9.0 SystemUI 网络信号栏定制修改的流程,本文通过图文实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下2019-11-11Android自定义View实现钟摆效果进度条PendulumView
这篇文章主要介绍了Android自定义View实现钟摆效果进度条PendulumView,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-09-09Android App中实现可以双击放大和缩小图片功能的实例
这篇文章主要介绍了Android App中实现可以双击放大和缩小图片功能的实例,文中的例子不能做到逐级放大但可以做到边界控制和以触摸点为中心进行放大,需要的朋友可以参考下2016-03-03Android实战打飞机游戏之子弹生成与碰撞以及爆炸效果(5)
这篇文章主要为大家详细介绍了Android实战打飞机游戏之子弹生成与碰撞以及爆炸效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-07-07
最新评论