CardView 造就不一样的样式

//第一步   
添加  

buildGradle

compile 'com.android.support:cardview-v7:24.0.0-alpha2'

//第二步

在布局文件中设置属性

xml version="1.0" encoding="utf-8"?>
xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:id="@+id/activity_card_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
            android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardBackgroundColor="#6f0abdd5"
        app:contentPadding="20dp"
        app:cardCornerRadius="35dp">
                    android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="你好啊"/>
    
            android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardBackgroundColor="#6f0ad50d"
        app:contentPadding="20dp"
        app:cardCornerRadius="35dp">
                    android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="你好啊"/>
    


//实现效果


CardView 造就不一样的样式_第1张图片






你可能感兴趣的:(CardView 造就不一样的样式)