summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Matt Pietal <mpietal@google.com> 2019-02-11 09:55:45 -0500
committer Matt Pietal <mpietal@google.com> 2019-02-11 09:55:45 -0500
commit38e66cb4decabee8c8cc55bd258a38ce5ac72726 (patch)
tree90476230f3d5f25c8191c44160241f439ba8dd69
parent2148e7f00994e9b6b8cbd2dd89c27b7829196867 (diff)
Sharesheet - use config for rounded corners
Pick up new dimension for config changes to the corner radius Bug: 123950860 Test: Visual inspection of sharesheet corner radius changes when the theme is changed Change-Id: Ib286df9b843849bd284f06c4500084a8ca21df52
-rw-r--r--core/res/res/drawable/bottomsheet_background.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/drawable/bottomsheet_background.xml b/core/res/res/drawable/bottomsheet_background.xml
index bc32ba6e3896..3a8ad71187a0 100644
--- a/core/res/res/drawable/bottomsheet_background.xml
+++ b/core/res/res/drawable/bottomsheet_background.xml
@@ -16,7 +16,7 @@
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
<corners
- android:topLeftRadius="?attr/dialogCornerRadius"
- android:topRightRadius="?attr/dialogCornerRadius" />
+ android:topLeftRadius="@dimen/config_bottomDialogCornerRadius"
+ android:topRightRadius="@dimen/config_bottomDialogCornerRadius"/>
<solid android:color="?attr/colorBackgroundFloating" />
</shape>