android-cardview簡單使用
cardview是5.0以上版本的控件,是一個卡片式布局,繼承framlayout,但是可以使用兼容包老兼容4.0以上的設備。
測試環境是android studio
1.加入依賴:
compile 'com.android.support:cardview-v7:21.0.3'
2.寫布局:
<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>
注意:這里有兩個屬性cardCornerRadius和cardBackgroundColor,已經基本上見名知其意了,第一個是圓角半徑,第二個是背景顏色。
還有一個elevator屬性,但是只有在5.0以上版本才能顯示出來效果啦。
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!