<?xml version="1.0" encoding="utf-8"?>

<!--
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
     android:shape="line">

    <stroke android:width="2dp" android:color="#ff585858"/>
</shape>
    -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item android:id="@android:id/background" >
        <shape android:shape="line" >
            <stroke android:width="2dp" android:color="#44ffffff" />
        </shape>
    </item>

    <!-- <item android:drawable="@drawable/progress_behind" /> -->

    <item android:id="@+id/progressshape" >
        <clip>
            <shape android:shape="line" >
                <stroke android:width="2dp" android:color="#ffffffff" />
            </shape>
        </clip>
    </item>

</layer-list>