Android 之cardview简单使用

作者: 石头_起航 | 来源:发表于2018-06-22 14:43 被阅读10次

也是一个快要忘记的东西,抓紧写下来;
首先第一步导包

compile 'com.android.support:cardview-v7:26.1.0'//后面的和V7版本号一致就可以,

然后就是使用了,主要是用在列表中使用效果就是这样的,来看看


效果图.png

感觉还是挺好看的对吧,比单独的列表好看一点,不那么单调。
首先在布局里面引用

<android.support.v7.widget.CardView
    android:layout_margin="20dp"
    app:cardCornerRadius="8dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="40dp"
        android:gravity="center"
        android:id="@+id/tv"/>
</android.support.v7.widget.CardView>

布局中添加一个这就可以了,就这么简单;
cardBackgroundColor:是卡片的背景颜色
cardCornerRadius:卡片的四个圆角的弧度 数字越大弧度越大
contentPadding:内边距
contentPaddingBottom:内地边距
contentPaddingTop:内顶边距
contentPaddingLeft:左边距
contentPaddingRight:右边距

相关文章

网友评论

    本文标题:Android 之cardview简单使用

    本文链接:https://www.haomeiwen.com/subject/ffukyftx.html