45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/recommend_item_big_height"
|
|
android:layout_margin="@dimen/recommend_margin"
|
|
app:cardElevation="0dp"
|
|
app:cardCornerRadius="20dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/whole_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/recommend_item_imageview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="3"
|
|
android:scaleType="centerCrop"
|
|
tools:src="@drawable/food_test" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/recommend_item_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:textSize="15sp"
|
|
android:textStyle="bold"
|
|
tools:text="红烧肉" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</android.support.v7.widget.CardView> |