2017-04-20 4 views
2

CardView를 지원하는 기본 여백은 얼마입니까? 그래서 내 마진을 정의 할 수 있습니까?CardView의 여백을 정의하는 방법

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:card_view="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_gravity="center_horizontal" 
    card_view:cardUseCompatPadding="true" 
    card_view:cardCornerRadius="4dp" 
    card_view:cardElevation="2dp"> 

답변

1

CardView의 여백을 정의하는 방법은 무엇입니까?

사용 속성 android:layout_marginLeft, android:layout_marginRight, android:layout_marginTopandroid:layout_marginBottomCardView 여백을 정의 할 수 있습니다.

지원 CardView의 기본 여백은 얼마입니까?

여기는 CardViewDocumentation입니다. Design Guidelines도 참조하십시오.

참고로,를 사용하여 속성 card_view:cardUseCompatPadding="false"CardView 내부에 내부 padding를 제거합니다.

0

나는 또한 같은 문제가 떠올랐다. android : layout_margin Bottom을 추가했지만 작동하지 않았습니다.

그러나 해결책을 찾았습니다. CardView가 RelativeLayout 안에 있어야합니다. 그러면 android : layout_margin Bottom, android : layout_marginTop이 예상대로 작동합니다.