CardView的学习记录

Android5.0增加了一些新的控件,不过说实话CardView还真没咋用过呢,趁着休息学习一下CardView,翻译过来就是卡片,看了一下这个View的特有属性很少,它继承自FrameLayout,能为我们提供带圆角的ViewGroup容器,免去了我们自己需要生成shape的烦恼。

使用步骤

首先需要添加V7包依赖:compile ‘com.android.support:cardview-v7:25.3.1’

在布局中使用它:

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_centerInParent="true"
    app:cardBackgroundColor="#ffd300"
    app:cardCornerRadius="30dp"
   ></android.support.v7.widget.CardView>

基本效果是这样的:

在CardView里面添加一些子View:

` <TextView
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="#ff0000"
        android:gravity="center"
        android:text="测试数据测试数据测试数据测试数据测试数据测试数据测试数据测试数据测试数据" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_marginTop="40dp"
        android:background="#ff00ff"
        android:gravity="center"
        android:text="也是测试数据" />`

效果图是这样的:

当然了CardView还有几种属性可以设置,可以尝试一下:

<!--app:cardUseCompatPadding="true"-->
<!-- app:cardMaxElevation="20dp"-->
<!--app:cardPreventCornerOverlap="false"-->
<!-- app:contentPaddingLeft/Right/Top/Bottom="20dp"-->
<!--app:cardElevation="10dp"
 app:contentPadding="10dp"-->
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值