Files
frameworks_base/packages/SystemUI/res/drawable/rounded_bg_full.xml
Lucas Dupin 448786cc5f Themable volume and power dialogs
Test: visual
Bug: 63903361
Change-Id: I3e4dc74e960f212985712120341d3a80543c96db
2017-07-25 16:46:52 -07:00

12 lines
441 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/colorPrimary" />
<corners
android:bottomLeftRadius="@dimen/corner_size"
android:topLeftRadius="@dimen/corner_size"
android:bottomRightRadius="@dimen/corner_size"
android:topRightRadius="@dimen/corner_size"
/>
</shape>