How do I create a custom progressbar in Android that has a drawable for the progress and background items? this is a my source
<style parent="@android:style/Widget.ProgressBar" name="customProgressBar">
    <item name="android:indeterminateDrawable">@drawable/ic_refresh_white</item>
</style>
 <ProgressBar
            android:id="@+id/pdWithImage"
            android:layout_width="50dp"
            android:layout_height="50dp"
            style="@style/customProgressBar"
            android:layout_centerInParent="true" />
i added png image background but when i run my app progresbar not rotating how i can solve my problem?
 
    