HomeSort by relevance Sort by last modified time
    Searched refs:mProgressAnimator (Results 1 - 2 of 2) sorted by null

  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediasession/ui/
MediaSeekBar.java 56 private ValueAnimator mProgressAnimator;
112 if (mProgressAnimator != null) {
113 mProgressAnimator.cancel();
114 mProgressAnimator = null;
128 mProgressAnimator = ValueAnimator.ofInt(progress, getMax())
130 mProgressAnimator.setInterpolator(new LinearInterpolator());
131 mProgressAnimator.addUpdateListener(this);
132 mProgressAnimator.start();
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediasession/ui/
MediaSeekBar.java 56 private ValueAnimator mProgressAnimator;
112 if (mProgressAnimator != null) {
113 mProgressAnimator.cancel();
114 mProgressAnimator = null;
128 mProgressAnimator = ValueAnimator.ofInt(progress, getMax())
130 mProgressAnimator.setInterpolator(new LinearInterpolator());
131 mProgressAnimator.addUpdateListener(this);
132 mProgressAnimator.start();

Completed in 68 milliseconds