Google Play商店Cardview

时间:2015-03-04 16:52:18

标签: java android material-design android-cardview

我一直在努力制作类似于Google Play商店外观的卡片,即不同尺寸的卡片,图片以及卡片内的所有卡片。有关如何继续的任何提示。

1 个答案:

答案 0 :(得分:0)

基本上你只是创建一个布局(RelativeLayout,LinearLayout等)作为你的cardview元素的子元素,并使它看起来你想要的。 例如......

<android.support.v7.widget.CardView
    android:layout_gravity="center"
    android:layout_width="200dp"
    android:layout_height="200dp"
    card_view:cardElevation="2dp"
    card_view:cardBackgroundColor="@android:color/white"
    card_view:cardCornerRadius="2dp">

    <RelativeLayout android:layout_width="match_parent"
                    android:layout_height="match_parent">

        //Your desired layout here    

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

您可以查看MaterialList实现中的一些好例子。