Skip to content

Commit

Permalink
Improve PickerDialog header background
Browse files Browse the repository at this point in the history
Issue #6
There are now correct shapes for all the different configurations.
  • Loading branch information
taltstidl committed Feb 24, 2016
1 parent 23e177b commit 1b0563c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- shape used pre Lollipop for maintaining 2dp corner radius on header -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topLeftRadius="2dp"
android:bottomLeftRadius="2dp" />
<solid android:color="@android:color/white" />
</shape>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- shape used pre Lollipop for maintaining 2dp corner radius on header -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topRightRadius="2dp"
android:bottomRightRadius="2dp" />
<solid android:color="@android:color/white" />
</shape>

0 comments on commit 1b0563c

Please sign in to comment.