2016-03-21 43 views

回答

0

將佈局高度的wrap_content添加到包含cardview的父佈局。它會解決問題。這裏有一些片段可以幫助你。

<LinearLayout 
    android:layout_height="wrap_content" 
    android:layout_width="match_parent" > 

<android.support.v7.widget.CardView 
    xmlns:card_view="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/quote_card" 
    android:layout_height="200dp" 
    android:layout_width="match_parent" 
    card_view:cardBackgroundColor="#666" 
    card_view:cardCornerRadius="5dp" 
    card_view:cardElevation="5dp" 
    app:cardUseCompatPadding="true" 
    > 

    //other views here 


</android.support.v7.widget.CardView> 
</LinearLayout> 
+0

這工作!謝謝。我不確定爲什麼它在我身高爲match_parent之前有效。 – user2792588

+0

請接受這個答案 –