android 卡片式視圖組件 cardview的使用

來源:互聯網
上載者:User

標籤:cardview   卡片式布局   

cardview是放在support library v7包中的一個組件(recyclerview也是在這裡喔,詳細會在後邊的部落格裡介紹)

      開始在寫recyclerview的demo的時候,發現別人寫出來的都是卡片式的布局,很好看喔~而我寫的還是和原來的ListView一個樣式,查了半天,最後才發現在條目布局上出現了不同,這裡也就涉及到了cardview的使用。

      

<span style="font-size:14px;"><android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"      xmlns:card_view="http://schemas.android.com/apk/res-auto"      android:layout_width="match_parent"      android:layout_height="match_parent"      android:layout_margin="5dp"      card_view:cardBackgroundColor="@color/cardview_dark_background"      card_view:cardCornerRadius="5dp" >        <RelativeLayout          android:layout_width="match_parent"          android:layout_height="100dp"          android:padding="5dp" >            <ImageView              android:id="@+id/pic"              android:layout_width="match_parent"              android:layout_height="match_parent"              android:layout_centerInParent="true"              android:scaleType="centerCrop" />            <TextView              android:clickable="true"              android:id="@+id/name"              android:layout_width="match_parent"              android:layout_height="match_parent"              android:layout_marginBottom="10dp"              android:layout_marginRight="10dp"              android:gravity="right|bottom"              android:textColor="@android:color/white"              android:textSize="24sp" />      </RelativeLayout>    </android.support.v7.widget.CardView> </span>
大概看到,它也就用CardView控制項包裹了一下原有的條目布局,寬高依舊使用填充父表單

layout_margin 表示卡片之間的間隔,這裡應該是真實間隔的一半(原因你應該懂的)

cardCornerRadius 表示卡片外圍圓角的弧度

cardBackgroundColor表示卡片背景顏色

後兩個屬性是屬於card_view命名空間的,所以在使用的時候不要忘記加上這個命名控制項




著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

android 卡片式視圖組件 cardview的使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.