<ProgressBar
android:id="@+id/progress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="8000"
android:progress="8000"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
/>
ProgressBar progress = (ProgressBar) findViewById(R.id.progress);
ObjectAnimator anim = ObjectAnimator.ofInt(progress, "progress", 8000, 0);
anim.setDuration(8000);
anim.start();