天天看點

學習使用Material Design控件(三)使用CardView實作卡片效果

本文主要介紹CardView的使用,CardView是繼承自FrameLayout,使用比較簡單,隻需要用CardView包含其他View就可以實作卡片效果了。

實作效果如下:

學習使用Material Design控件(三)使用CardView實作卡片效果

加入依賴庫

dependencies {
  ….
  compile 'com.android.support:cardview-v7:22.2.0'
}           

複制

Layout布局

<android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardCornerRadius="10dp"
        app:cardElevation="10dp"
        android:layout_marginBottom="@dimen/card_margin"
        android:layout_marginLeft="@dimen/card_margin"
        android:layout_marginRight="@dimen/card_margin" 

        <LinearLayout
          style="@style/CardView.Content"
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:orientation="horizontal" 

          <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/book1" / 

          <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:orientation="vertical" 

            <TextView
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:text="@string/book_title_1"
              android:textAppearance="@style/TextAppearance.AppCompat.Title"
              android:textColor="@color/primary_text" / 

            <TextView
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_marginTop="2dp"
              android:text="@string/book_description_1"
              android:textColor="@color/secondary_text" / 
          </LinearLayout 

        </LinearLayout 

</android.support.v7.widget.CardView            

複制

app:cardBackgroundColor 設定CardView背景顔色

app:cardCornerRadius 設定CardView圓角大小

app:cardElevation 設定CardView陰影高度

項目源碼已釋出到Github,以後慢慢加入其他控件的使用。

以上就是本文的全部内容,希望對大家的學習有所幫助。