- 添加 ic_layout_grid.xml 矢量图标文件 - 添加 ic_layout_list.xml 矢量图标文件 - 配置图标尺寸为 24x24 dp - 设置视口宽度和高度为 24 - 定义灰色填充颜色 #6666 - 实现网格布局图标的路径数据 - 实现列表布局图标的路径数据
19 lines
524 B
XML
19 lines
524 B
XML
<?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>
|