Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added pause and play drawables
  • Loading branch information
niven committed Jan 21, 2012
1 parent be114fe commit 0a3d5f9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions res/drawable/pause.xml
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="@color/blue_light"
android:endColor="#2f6699"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners android:radius="4dp" />
</shape>
</item>
<item>
<bitmap
android:src="@android:drawable/ic_media_pause"
android:gravity="center" />
</item>
</layer-list>
20 changes: 20 additions & 0 deletions res/drawable/play.xml
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="@color/blue_light"
android:endColor="#2f6699"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners android:radius="4dp" />
</shape>
</item>
<item>
<bitmap
android:src="@android:drawable/ic_media_play"
android:gravity="center" />
</item>
</layer-list>

0 comments on commit 0a3d5f9

Please sign in to comment.