2015-02-03 18:51:58 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
2015-08-06 00:20:48 +05:30
|
|
|
<!-- using an attribute for color will crash on API <= 20. Refer to http://stackoverflow.com/a/13471695/3000919 -->
|
|
|
|
|
<solid android:color="#b2000000"/>
|
2015-02-03 18:51:58 +01:00
|
|
|
<padding
|
|
|
|
|
android:left="16dp"
|
|
|
|
|
android:top="4dp"
|
|
|
|
|
android:right="16dp"
|
|
|
|
|
android:bottom="4dp"/>
|
|
|
|
|
<corners
|
|
|
|
|
android:radius="2dp"/>
|
2015-06-26 11:33:53 +02:00
|
|
|
</shape>
|