1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-06 01:25:36 -05:00
k-9/plugins/Android-PullToRefresh/library/res/drawable/indicator_bg_top.xml

18 lines
595 B
XML
Raw Normal View History

2012-11-24 17:14:32 -05:00
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#40000000" />
<!--
I know the android:radius is useless here but it's needed to fix an old bug:
http://code.google.com/p/android/issues/detail?id=939
-->
<corners
android:bottomLeftRadius="@dimen/indicator_corner_radius"
android:bottomRightRadius="@dimen/indicator_corner_radius"
android:radius="1dp"
android:topLeftRadius="0dp"
android:topRightRadius="0dp" />
</shape>