- 调整设置页面布局间距和背景样式 - 更换箭头图标资源文件 - 将调料列表改为网格布局显示 - 优化调料项目卡片样式和尺寸 - 修改RecyclerView为4列网格布局
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="110dp"
|
|
android:layout_marginHorizontal="5dp"
|
|
android:layout_marginVertical="5dp"
|
|
android:paddingHorizontal="10dp"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:background="@drawable/shape_white_fb_15_corners2">
|
|
<!-- android:background="@drawable/shape_scale_cell"-->
|
|
|
|
<TextView
|
|
android:id="@+id/tvSeasoningName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="@color/black"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
tools:text="土豆丝" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvSeasoningWeight"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:textColor="@color/dish_green"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textSize="26sp"
|
|
android:textStyle="bold"
|
|
tools:text="100g" />
|
|
|
|
</LinearLayout>
|