diff options
| author | 2022-02-02 16:50:19 +0000 | |
|---|---|---|
| committer | 2022-02-02 16:50:19 +0000 | |
| commit | 1a8fe9a360f5bbb900e20026e0d184473235a899 (patch) | |
| tree | b6286957e095b188489f9d8367af243fffcd23f2 | |
| parent | 57a7b823d14ec0730a423c2285a79462109474c4 (diff) | |
| parent | 7e0b7309ef1897aa78b3540ee70760790a8c04bf (diff) | |
Merge "Home Controls: Move padding dimens to new package."
| -rw-r--r-- | packages/SystemUI/res/values-sw720dp-land/dimens.xml | 2 | ||||
| -rw-r--r-- | packages/SystemUI/res/values-sw720dp/dimens.xml | 3 | ||||
| -rw-r--r-- | packages/SystemUI/res/values-w500dp/dimens.xml | 21 | ||||
| -rw-r--r-- | packages/SystemUI/res/values-w850dp/dimens.xml | 21 |
4 files changed, 4 insertions, 43 deletions
diff --git a/packages/SystemUI/res/values-sw720dp-land/dimens.xml b/packages/SystemUI/res/values-sw720dp-land/dimens.xml index 219fd43c0e83..ae557c4e72fc 100644 --- a/packages/SystemUI/res/values-sw720dp-land/dimens.xml +++ b/packages/SystemUI/res/values-sw720dp-land/dimens.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> + <!-- * Copyright (c) 2022, The Android Open Source Project * @@ -16,6 +17,7 @@ */ --> <resources> + <dimen name="controls_padding_horizontal">205dp</dimen> <dimen name="split_shade_notifications_scrim_margin_bottom">16dp</dimen> <dimen name="notification_panel_margin_bottom">56dp</dimen> </resources> diff --git a/packages/SystemUI/res/values-sw720dp/dimens.xml b/packages/SystemUI/res/values-sw720dp/dimens.xml index 1564ee8c5604..95df59442978 100644 --- a/packages/SystemUI/res/values-sw720dp/dimens.xml +++ b/packages/SystemUI/res/values-sw720dp/dimens.xml @@ -16,8 +16,9 @@ */ --> <resources> - <!-- gap on either side of status bar notification icons --> <dimen name="status_bar_icon_padding">1dp</dimen> + + <dimen name="controls_padding_horizontal">75dp</dimen> </resources> diff --git a/packages/SystemUI/res/values-w500dp/dimens.xml b/packages/SystemUI/res/values-w500dp/dimens.xml deleted file mode 100644 index 5ce5ceee6dc9..000000000000 --- a/packages/SystemUI/res/values-w500dp/dimens.xml +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> - -<!-- - ~ Copyright (C) 2022 The Android Open Source Project - ~ - ~ Licensed under the Apache License, Version 2.0 (the "License"); - ~ you may not use this file except in compliance with the License. - ~ You may obtain a copy of the License at - ~ - ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ - ~ Unless required by applicable law or agreed to in writing, software - ~ distributed under the License is distributed on an "AS IS" BASIS, - ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - ~ See the License for the specific language governing permissions and - ~ limitations under the License. - --> - -<resources> - <dimen name="controls_padding_horizontal">75dp</dimen> -</resources> diff --git a/packages/SystemUI/res/values-w850dp/dimens.xml b/packages/SystemUI/res/values-w850dp/dimens.xml deleted file mode 100644 index bb6ba8fb07b6..000000000000 --- a/packages/SystemUI/res/values-w850dp/dimens.xml +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> - -<!-- - ~ Copyright (C) 2022 The Android Open Source Project - ~ - ~ Licensed under the Apache License, Version 2.0 (the "License"); - ~ you may not use this file except in compliance with the License. - ~ You may obtain a copy of the License at - ~ - ~ http://www.apache.org/licenses/LICENSE-2.0 - ~ - ~ Unless required by applicable law or agreed to in writing, software - ~ distributed under the License is distributed on an "AS IS" BASIS, - ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - ~ See the License for the specific language governing permissions and - ~ limitations under the License. - --> - -<resources> - <dimen name="controls_padding_horizontal">205dp</dimen> -</resources> |