android-cardview简单使用

cardview是5.0以上版本的控件,是一个卡片式布局,继承framlayout,但是可以使用兼容包老兼容4.0以上的设备。

测试环境是android studio

1.加入依赖:

<span style="font-size:14px;">compile 'com.android.support:cardview-v7:21.0.3'</span>

2.写布局:

<span style="font-size:14px;"><android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardCornerRadius="4dp"
    app:cardBackgroundColor="@color/style_color_primary">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="hello cardview!"/>
    </LinearLayout>


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

注意:这里有两个属性cardCornerRadius和cardBackgroundColor,已经基本上见名知其意了,第一个是圆角半径,第二个是背景颜色。

还有一个elevator属性,但是只有在5.0以上版本才能显示出来效果啦。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。