Files
DishMatch/app/src/main/res/drawable/shape_scale_cell.xml
T

11 lines
399 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- 秤格子背景:白色底 + 灰色描边 + 圆角,与页面蓝色背景形成对比 -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFFFFF" />
<stroke
android:width="1dp"
android:color="@color/gray_d6" />
<corners android:radius="8dp" />
</shape>