summaryrefslogtreecommitdiffstats
path: root/res/drawable/seek_bar_thumb.xml
blob: 04ba0fa7a39cdf6c036cc2f64c780025e7a6c3c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- First item is the outer transparent sphere. -->
    <item>
        <shape
            android:shape="oval"
        >
            <size
                android:width="15dip"
                android:height="15dip"
            />
            <solid
                android:color="@color/voicemail_playback_seek_bar_yet_to_play"
            />
        </shape>
    </item>
    <!-- Second item is the inner almost-opaque sphere.
         Seems to derive its size from the outer, a size element doesn't change anything.
         Looks like using left, right, top and bottom on the item is best to fix inner sphere. -->
    <item
        android:left="3dip"
        android:right="3dip"
        android:top="3dip"
        android:bottom="3dip"
    >
        <shape
            android:shape="oval"
        >
            <solid
                android:color="@color/voicemail_playback_seek_bar_already_played"
            />
        </shape>
    </item>
</layer-list>