Material Design控件使用(三)

本文主要介紹CardView的使用,CardView是繼承自FrameLayout,
使用比較簡單,只需要用CardView包含其他View就可以實(shí)現(xiàn)卡片效果了。
實(shí)現(xiàn)效果如下:


加入依賴庫

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 設(shè)置CardView背景顏色
  • app:cardCornerRadius 設(shè)置CardView圓角大小
  • app:cardElevation 設(shè)置CardView陰影高度

項(xiàng)目源碼已發(fā)布到Github,以后慢慢加入其他控件的使用。
源碼地址:MaterialDesignExample

本文作者: 陽春面
原文地址:http://www.aswifter.com/2015/06/28/Material-Design-Example-3/

歡迎關(guān)注我的微信公眾號(hào),分享Android 開發(fā),IOS開發(fā),Swift開發(fā)和互聯(lián)網(wǎng)內(nèi)容
微信號(hào):APP開發(fā)者

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容