61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/bottom_sheet_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1000dp"
|
|
android:background="@drawable/bottom_sheet_background"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="60dp"
|
|
android:paddingTop="30dp"
|
|
android:paddingBottom="0dp">
|
|
|
|
<View
|
|
android:layout_width="90dp"
|
|
android:layout_height="10dp"
|
|
android:background="@drawable/view_shape_point" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="46dp"
|
|
android:text="菜品检索"
|
|
android:textColor="#ff333333"
|
|
android:textSize="36sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginTop="50dp"
|
|
android:background="@drawable/bg_search"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<EditText
|
|
android:id="@+id/et_search"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="32dp"
|
|
android:layout_weight="1"
|
|
android:background="@null"
|
|
android:hint="输入菜品名称"
|
|
android:imeOptions="actionSearch"
|
|
android:maxLines="1"
|
|
android:textColor="#333333"
|
|
android:textColorHint="#ffc8c8c8"
|
|
android:textSize="36sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_search"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="30dp"
|
|
android:src="@drawable/ic_search" />
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="700dp"
|
|
android:layout_marginTop="50dp" />
|
|
</LinearLayout> |