標籤:
cardview是5.0以上版本的控制項,是一個卡片式布局,繼承framlayout,但是可以使用相容包老相容4.0以上的裝置。
測試環境是android studio
1.加入依賴:
<span style="font-size:14px;">compile 'com.android.support:cardview-v7:21.0.3'</span>
2.寫布局:
<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>
注意:這裡有兩個屬性cardCornerRadius和cardBackgroundColor,已經基本上見名知其意了,第一個是圓角半徑,第二個是背景顏色。
還有一個elevator屬性,但是只有在5.0以上版本才能顯示出來效果啦。
android-cardview簡單使用