Files
frameworks_base/packages/SystemUI/res/drawable/rounded_bg_bottom.xml
Beth Thibodeau 8faa0af23b Use theme corner radius in volume and power dialog
Fixes: 124383060
Test: Visually verified that radius changes with theme
Change-Id: I07d77b1cde8bfd23ce20ba552581835d7734857a
2019-02-14 13:25:11 -05:00

12 lines
414 B
XML

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="?android:attr/colorPrimaryDark" />
<corners
android:bottomLeftRadius="?android:attr/dialogCornerRadius"
android:topLeftRadius="0dp"
android:bottomRightRadius="0dp"
android:topRightRadius="0dp"
/>
</shape>