[android] CardView |
https://developer.android.com/preview/material/ui-widgets.html#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>
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] ART 의 GC 이야기. (0) | 2015.12.02 |
---|---|
[android] login test 를 쉽게 하자! (0) | 2015.12.01 |
[android] v7 에 추가된 RecyclerView 에 대해 알아보자 #2 (0) | 2015.11.29 |
[android] 연락처 수정, 삭제에 대한 추가정보 (0) | 2015.11.16 |
[android] Bitmap 변환시 exif 정보 유지시키기 (0) | 2015.11.09 |
댓글