본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[android] CardView

by 돼지왕 왕돼지 2015. 11. 30.
반응형


 [android] CardView


https://developer.android.com/preview/material/ui-widgets.html#cardview



Android, android:cardcornerradius, android:elevation, cardbackgroundcolor, cardcornerradius, cardview, Elevation, Example, example code, frameLayout, rounded corner, sample, Sample Code, setradius, Shadow, [android] CardView



CardView 는 FrameLayout 을 상속한 녀석이다.

CardView 의 특징은 rounded corner 를 가질 수 있다는 것과 shadow 를 가질 수 있다는 것.


shadow 를 만들기 위해서는 android:elevation 속성을 control 하면 된다.


android:cardCornerRadius 속성을 통해 rounded corner 를 줄 수 있다. ( CardView.setRadius )

android:cardBackgroundColor 속성을 통해 배경속성을 따로 줄 수 있다.


<!-- A CardView that contains a TextView -->

<android.support.v7.widget.CardView

    xmlns:card_view="http://schemas.android.com/apk/res-auto"

    android:id="@+id/card_view"

    android:layout_gravity="center"

    android:layout_width="200dp"

    android:layout_height="200dp"

    card_view:cardCornerRadius="4dp">


    <TextView

        android:id="@+id/info_text"

        android:layout_width="match_parent"

        android:layout_height="match_parent" />

</android.support.v7.widget.CardView>





반응형

댓글