63 lines
2.4 KiB
XML
63 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:id="@+id/whole_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/recommend_item_default_hight"
|
|
android:layout_margin="@dimen/recommend_margin"
|
|
android:orientation="horizontal">
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="@dimen/recommend_item_default_hight"
|
|
android:layout_height="@dimen/recommend_item_default_hight"
|
|
android:layout_marginRight="5dp"
|
|
app:cardCornerRadius="20dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/recommend_item_imageview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
tools:src="@drawable/food_test" />
|
|
</android.support.v7.widget.CardView>
|
|
|
|
<android.support.v7.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="5dp"
|
|
app:cardCornerRadius="20dp">
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/detail_click"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#f3f9de"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="5dp"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
android:paddingTop="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/recommend_item_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:text="小知识"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/recommend_item_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:textSize="12sp"
|
|
tools:text="红烧肉是最美味的菜了!超级好吃!" />
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.CardView>
|
|
</LinearLayout> |