cardview是5.0以上版本的控件,是一个卡片式布局,继承framlayout,但是可以使用兼容包老兼容4.0以上的设备。
测试环境是android studio
1.加入依赖:
<span style="font-size:14px;">compile 'com.android.support:cardview-v7:21.0.3'</span>
<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>
还有一个elevator属性,但是只有在5.0以上版本才能显示出来效果啦。