CardView卡片布局
说明
CardView 卡片布局
使用示例
<CardView>
<LinearLayout android:orientation="vertical">
<TextView android:layout_width="match_parent" android:layout_height="wrap_content"
android:padding="20dp" android:text="CardView演示"/>
<ImageView
android:src="https://upload.jianshu.io/users/upload_avatars/4321745/406ef6d9-28c1-4f35-8cee-37818cc404af.jpg"
android:layout_width="200dp" android:layout_height="200dp" android:scaleType="CENTER_CROP"/>
</LinearLayout>
</CardView>