| <!-- |
| ~ Copyright (C) 2018 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 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> |
| |
| <!-- The bounding path of the cutout region of the main built-in display. |
| Must either be empty if there is no cutout region, or a string that is parsable by |
| {@link android.util.PathParser}. |
| |
| The path is assumed to be specified in display coordinates with pixel units and in |
| the display's native orientation, with the origin of the coordinate system at the |
| center top of the display. |
| |
| To facilitate writing device-independent emulation overlays, the marker `@dp` can be |
| appended after the path string to interpret coordinates in dp instead of px units. |
| Note that a physical cutout should be configured in pixels for the best results. |
| --> |
| <string translatable="false" name="config_mainBuiltInDisplayCutout"> |
| M 0,0 |
| L -48, 0 |
| L -44.3940446283, 36.0595537175 |
| C -43.5582133885, 44.4178661152 -39.6, 48.0 -31.2, 48.0 |
| L 31.2, 48.0 |
| C 39.6, 48.0 43.5582133885, 44.4178661152 44.3940446283, 36.0595537175 |
| L 48, 0 |
| Z |
| @dp |
| </string> |
| |
| <string translatable="false" name="config_mainBuiltInDisplayCutoutRectApproximation">@*android:string/config_mainBuiltInDisplayCutout</string> |
| |
| <!-- Whether the display cutout region of the main built-in display should be forced to |
| black in software (to avoid aliasing or emulate a cutout that is not physically existent). |
| --> |
| <bool name="config_fillMainBuiltInDisplayCutout">true</bool> |
| |
| <!-- Height of the status bar --> |
| <dimen name="status_bar_height_portrait">48dp</dimen> |
| <dimen name="status_bar_height_landscape">28dp</dimen> |
| </resources> |
| |
| |