android中cardview的基本使用

本文介绍如何在Android项目中引入CardView组件,并演示了其在布局文件中的基本配置方法,包括设置阴影、背景颜色及圆角等属性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

cardView的基本使用   留个demo 做个小小的备份

cardView个人感觉类似于xml布局  shape的效果

首先在项目的build.gradle中添加引用

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
}

xml布局文件

<android.support.v7.widget.CardView xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginTop="20dp"
    app:cardBackgroundColor="#303069"
    app:cardCornerRadius="8dp"
    >
主要属性

  • app:cardElevation 阴影的大小
  • app:cardMaxElevation 阴影最大高度
  • app:cardBackgroundColor 卡片的背景色
  • app:cardCornerRadius 卡片的圆角大小
  • app:contentPadding 卡片内容于边距的间隔
重要一点cardView继承Framelayout


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值