Google Play 商店卡片视图

Google Play Store Cardview

我一直在尝试制作与 Google Play Store 外观相似的卡片,即不同尺寸的卡片,图片和卡片都在卡片中。关于如何进行的任何提示。

基本上,您只需创建一个布局(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 实现以获得一些很好的示例。