0

I'd like to display a consistent loading spinner animation across all versions of Android. Ideally, I'd like to use the loading spinner animation from Lollipop in older versions of Android. Is such a thing possible?

SilentByte
  • 1,098
  • 1
  • 10
  • 21

1 Answers1

0

Try this:

<com.github.rahatarmanahmed.cpv.CircularProgressView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/progress_view"
    android:layout_width="40dp"
    android:layout_height="40dp"
    app:cpv_indeterminate="true"/>

REFERENCE

Community
  • 1
  • 1
Suganth G
  • 5,136
  • 3
  • 25
  • 44