- 将按钮组件替换为TextView以支持更好的交互效果 - 添加selectableItemBackground实现点击反馈效果 - 重命名食材采样为食材采集保持术语一致性 - 替换FoodCollectionAdapter为VectorCollectionAdapter适配器 - 更新列表项布局从list_item_food_collection到list_item_vector_collection - 添加FoodSearchAdapter适配器用于食材搜索功能 - 重构CollectFragment中的数据绑定和UI逻辑 - 修改相机容器布局位置优化界面结构 - 更新资源文件名和颜色定义提升代码可读性 - 调整保存按钮样式增强视觉效果 - 修改提示对话框内容精确表达功能意图
111 lines
4.0 KiB
XML
111 lines
4.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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:background="@drawable/bg_other_page">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/llSearchBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_margin="30dp"
|
|
android:background="@drawable/shape_white_30_corners"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<EditText
|
|
android:id="@+id/etInputDish"
|
|
android:layout_width="0dp"
|
|
android:layout_height="80dp"
|
|
android:layout_marginHorizontal="28dp"
|
|
android:layout_weight="1"
|
|
android:autofillHints=""
|
|
android:background="@color/white"
|
|
android:gravity="center"
|
|
android:hint="@string/dish_search_hint"
|
|
android:inputType="text"
|
|
android:imeOptions="actionSearch"
|
|
android:paddingStart="3dp"
|
|
android:paddingEnd="3dp"
|
|
android:textColor="@color/black333"
|
|
android:textColorHint="@color/gray_c8"
|
|
android:textSize="40sp"
|
|
tools:ignore="TextFields" />
|
|
|
|
<ImageView
|
|
android:id="@+id/ivDishSearch"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:paddingStart="10dp"
|
|
android:paddingEnd="10dp"
|
|
android:visibility="gone"
|
|
android:src="@drawable/ic_search_gray"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginHorizontal="30dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shape_white_30_corners"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="20dp"
|
|
android:layout_marginTop="30dp"
|
|
android:layout_marginEnd="20dp"
|
|
android:layout_marginBottom="30dp"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:padding="10dp"
|
|
android:text="@string/dish_composition"
|
|
android:textColor="@color/black666"
|
|
android:textSize="28sp" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/flCameraContainer"
|
|
android:layout_width="1dp"
|
|
android:layout_height="1dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rvDishPartList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="20dp"
|
|
android:overScrollMode="never"
|
|
tools:itemCount="3"
|
|
tools:listitem="@layout/list_item_dish_cook"
|
|
android:scrollbars="vertical" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/btnCook"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="90dp"
|
|
android:layout_margin="30dp"
|
|
android:background="@drawable/shape_green_bg"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
android:gravity="center"
|
|
android:text="@string/goCooking"
|
|
android:textColor="@color/white"
|
|
android:textSize="32sp"
|
|
android:textStyle="bold" />
|
|
<!-- android:background="@drawable/ripple_effect_green"-->
|
|
|
|
</LinearLayout> |