Files
NutritionMaster/app/src/main/res/layout/material_result_item.xml
ScorpioMiku 7e1c9aa755 1
2018-10-07 20:10:39 +08:00

32 lines
1.0 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"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#fff"
android:layout_margin="5dp"
android:id="@+id/whole_layout"
android:orientation="horizontal">
<android.support.v7.widget.CardView
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_gravity="center_vertical"
app:cardCornerRadius="10dp">
<ImageView
android:id="@+id/image"
android:layout_width="100dp"
android:layout_height="100dp"
android:scaleType="centerCrop" />
</android.support.v7.widget.CardView>
<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:text="哈哈哈"
android:textSize="15sp" />
</LinearLayout>