UI控件--CardView

UI控件--CardView_第1张图片

  • 要使用这个控件需要导bao
    这里写图片描述

  • 布局代码如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" //这一句必须要自己添加 xmlns:card="http://schemas.android.com/apk/res-auto" //没错就是上面这一句 android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.lingzhuo.testv4.Main2Activity">
    <android.support.v7.widget.CardView  android:layout_width="wrap_content" android:layout_height="wrap_content" card:cardCornerRadius="10dp" android:layout_margin="30dp" card:cardElevation="10dp">

        <ImageView  android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@mipmap/ic_launcher"/>

    </android.support.v7.widget.CardView>
</RelativeLayout>
  • card:cardCornerRadius
  • 圆角的大小
  • card:cardElevation
  • 控件的背景阴影大小

你可能感兴趣的:(android,UI,控件,CardView)