Still needs a bunch of code cleanup, but this will get a version into the tree for testing. Test: visual Bug: 37013646 Change-Id: I29800b57d80ea120c691663392f368c17325ab54
12 lines
379 B
XML
12 lines
379 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="#ffeeeeee" />
|
|
<corners
|
|
android:bottomLeftRadius="@dimen/corner_size"
|
|
android:topLeftRadius="0dp"
|
|
android:bottomRightRadius="0dp"
|
|
android:topRightRadius="0dp"
|
|
/>
|
|
</shape>
|