1<?xml version="1.0" encoding="utf-8"?><!-- 2 ~ Copyright (C) 2023 The Android Open Source Project 3 ~ 4 ~ Licensed under the Apache License, Version 2.0 (the "License"); 5 ~ you may not use this file except in compliance with the License. 6 ~ You may obtain a copy of the License at 7 ~ 8 ~ http://www.apache.org/licenses/LICENSE-2.0 9 ~ 10 ~ Unless required by applicable law or agreed to in writing, software 11 ~ distributed under the License is distributed on an "AS IS" BASIS, 12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 ~ See the License for the specific language governing permissions and 14 ~ limitations under the License. 15 --> 16 17<workspaceSpecs xmlns:launcher="http://schemas.android.com/apk/res-auto"> 18 <!-- 584 grid height --> 19 <workspaceSpec 20 launcher:specType="height" 21 launcher:maxAvailableSize="584dp"> 22 <startPadding launcher:fixedSize="0dp" /> 23 <endPadding launcher:fixedSize="32dp" /> 24 <gutter launcher:fixedSize="16dp" /> 25 <cellSize launcher:ofAvailableSpace="0.15808" /> 26 </workspaceSpec> 27 28 <!-- 584 grid height + 28 remainder space --> 29 <workspaceSpec 30 launcher:specType="height" 31 launcher:maxAvailableSize="612dp"> 32 <startPadding launcher:fixedSize="0dp" /> 33 <endPadding launcher:ofRemainderSpace="1" /> 34 <gutter launcher:fixedSize="16dp" /> 35 <cellSize launcher:fixedSize="104dp" /> 36 </workspaceSpec> 37 38 <workspaceSpec 39 launcher:specType="height" 40 launcher:maxAvailableSize="9999dp"> 41 <startPadding launcher:fixedSize="8dp" /> 42 <endPadding launcher:ofRemainderSpace="1" /> 43 <gutter launcher:fixedSize="16dp" /> 44 <cellSize launcher:fixedSize="104dp" /> 45 </workspaceSpec> 46 47 <!-- TODO(b/241386436): other specs here for height ... --> 48 49 <!-- Width spec is always the same --> 50 <workspaceSpec 51 launcher:specType="width" 52 launcher:maxAvailableSize="9999dp"> 53 <startPadding launcher:fixedSize="22dp" /> 54 <endPadding launcher:fixedSize="22dp" /> 55 <gutter launcher:fixedSize="16dp" /> 56 <cellSize launcher:ofRemainderSpace="0.25" /> 57 </workspaceSpec> 58 59</workspaceSpecs> 60