feat(resources): 添加网格和列表布局图标资源

- 添加 ic_layout_grid.xml 矢量图标文件
- 添加 ic_layout_list.xml 矢量图标文件
- 配置图标尺寸为 24x24 dp
- 设置视口宽度和高度为 24
- 定义灰色填充颜色 #6666
- 实现网格布局图标的路径数据
- 实现列表布局图标的路径数据
This commit is contained in:
2026-05-18 14:18:32 +08:00
parent 7d3cb27b6e
commit df01312577
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#666666"
android:pathData="
M2,6 h4 v5 h-4 Z
M7.5,6 h4 v5 h-4 Z
M13,6 h4 v5 h-4 Z
M18.5,6 h4 v5 h-4 Z
M2,13 h4 v5 h-4 Z
M7.5,13 h4 v5 h-4 Z
M13,13 h4 v5 h-4 Z
M18.5,13 h4 v5 h-4 Z" />
</vector>
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="#666666"
android:pathData="
M2,6 h8.5 v5 h-8.5 Z
M13.5,6 h8.5 v5 h-8.5 Z
M2,13 h8.5 v5 h-8.5 Z
M13.5,13 h8.5 v5 h-8.5 Z" />
</vector>