overlays: Use rounded corners in SystemUI

- This looks more modern and matches the stock Pixel style.
- This matches the stock Pixel rounded corner styles as of Beta 5.

Change-Id: I94d6e782a24873ae0c59b6613e998f4a80842712
This commit is contained in:
Danny Lin
2020-10-04 23:57:30 -07:00
committed by Michael Bestas
parent 03503fee70
commit cd2d068c3b

View File

@@ -16,7 +16,16 @@
*/
-->
<resources>
<dimen name="config_dialogCornerRadius">8.0dip</dimen>
<dimen name="config_buttonCornerRadius">4.0dip</dimen>
<dimen name="config_progressBarCornerRadius">1000.0dip</dimen>
<!-- Corner radius of system dialogs -->
<dimen name="config_dialogCornerRadius">28dp</dimen>
<!-- Corner radius of system buttons -->
<dimen name="config_buttonCornerRadius">4dp</dimen>
<!-- Corner radius for bottom sheet system dialogs -->
<dimen name="config_bottomDialogCornerRadius">16dp</dimen>
<!-- Corner radius of system progress bars -->
<dimen name="config_progressBarCornerRadius">1000dp</dimen>
<!-- System-provided radius for the background view of app widgets. The resolved value of this resource may change at runtime. -->
<dimen name="system_app_widget_background_radius">28dp</dimen>
<!-- System-provided radius for inner views on app widgets. The resolved value of this resource may change at runtime. -->
<dimen name="system_app_widget_inner_radius">20dp</dimen>
</resources>