HomeSort by relevance Sort by last modified time
    Searched full:interpolators (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /development/samples/browseable/Interpolator/
_index.jd 8 This sample demonstrates the use of animation interpolators and path animations for
  /developers/build/prebuilts/gradle/Interpolator/Application/tests/src/com/example/android/interpolator/tests/
SampleTests.java 78 Interpolator[] interpolators = mTestFragment.getInterpolators(); local
87 // The number of loaded interpolators has to match the number of entries in the spinner
88 assertEquals(interpolators.length, interpolateSpinner.getCount());
89 // Test that all interpolators have been loaded
90 for (Interpolator i : interpolators) {
97 * Test if all Interpolators can be used to start an animation.
103 final Interpolator[] interpolators = mTestFragment.getInterpolators(); local
105 for (final Interpolator i : interpolators) {
  /developers/samples/android/ui/Interpolator/Application/tests/src/com/example/android/interpolator/tests/
SampleTests.java 78 Interpolator[] interpolators = mTestFragment.getInterpolators(); local
87 // The number of loaded interpolators has to match the number of entries in the spinner
88 assertEquals(interpolators.length, interpolateSpinner.getCount());
89 // Test that all interpolators have been loaded
90 for (Interpolator i : interpolators) {
97 * Test if all Interpolators can be used to start an animation.
103 final Interpolator[] interpolators = mTestFragment.getInterpolators(); local
105 for (final Interpolator i : interpolators) {
  /frameworks/support/interpolator/
build.gradle 13 name = "Android Support Library Interpolators"
  /frameworks/base/core/java/android/animation/
TimeInterpolator.java 34 * interpolators which overshoot their targets, or less than 0 for
35 * interpolators that undershoot their targets.
package.html 15 You can set many different types of interpolators (contained in {@link android.view.animation}),
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/utils/
Interpolators.java 23 * Common interpolators used in answer methods.
25 public class Interpolators {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
AssistOrbContainer.java 25 import com.android.systemui.Interpolators;
104 .setInterpolator(Interpolators.LINEAR_OUT_SLOW_IN);
109 .setInterpolator(Interpolators.LINEAR_OUT_SLOW_IN);
127 .setInterpolator(Interpolators.FAST_OUT_SLOW_IN);
132 .setInterpolator(Interpolators.FAST_OUT_SLOW_IN)
  /developers/samples/android/ui/Interpolator/
template-params.xml 31 This sample demonstrates the use of animation interpolators and path animations for
61 This sample demonstrates the use of animation interpolators and path animations for
71 This sample demonstrates the use of `Material Design` animation interpolators
  /frameworks/base/core/java/android/view/animation/
BaseInterpolator.java 22 * An abstract class which is extended by default interpolators.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/charging/
WirelessChargingLayout.java 29 import com.android.systemui.Interpolators;
97 textOpacityAnimator.setInterpolator(Interpolators.LINEAR);
106 textFadeAnimator.setInterpolator(Interpolators.LINEAR);
113 circleFadeAnimator.setInterpolator(Interpolators.LINEAR);
  /packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/
RecentsViewStateController.java 23 import static com.android.launcher3.anim.Interpolators.AGGRESSIVE_EASE_IN_OUT;
24 import static com.android.launcher3.anim.Interpolators.LINEAR;
40 import com.android.launcher3.anim.Interpolators;
82 scaleAndTransYInterpolator = Interpolators.clampToProgress(
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
ColorScrim.java 25 import com.android.launcher3.anim.Interpolators;
60 colors.getSecondaryColor(), alpha), Interpolators.LINEAR);
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 38 * This sample demonstrates the use of animation interpolators and path animations for
63 * Interpolators used for animation.
91 * Names of the available interpolators.
122 // Set up the Spinner with the names of interpolators.
227 * Return the array of loaded Interpolators available in this Fragment.
229 * @return Interpolators
250 * Initialize interpolators programmatically by loading them from their XML definitions
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 38 * This sample demonstrates the use of animation interpolators and path animations for
63 * Interpolators used for animation.
91 * Names of the available interpolators.
122 // Set up the Spinner with the names of interpolators.
227 * Return the array of loaded Interpolators available in this Fragment.
229 * @return Interpolators
250 * Initialize interpolators programmatically by loading them from their XML definitions
  /development/samples/browseable/Interpolator/src/com.example.android.interpolator/
InterpolatorFragment.java 37 * This sample demonstrates the use of animation interpolators and path animations for
62 * Interpolators used for animation.
130 // Initialize Interpolators programmatically by loading them from their XML definitions
143 // Load names of interpolators from a resource
146 // Set up the Spinner with the names of interpolators
219 * Return the array of loaded Interpolators available in this Fragment.
221 * @return Interpolators
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
CrossFadeHelper.java 21 import com.android.systemui.Interpolators;
40 .setInterpolator(Interpolators.ALPHA_OUT)
81 float alpha = Interpolators.ALPHA_OUT.getInterpolation(1.0f - fadeOutAmount);
115 .setInterpolator(Interpolators.ALPHA_IN)
145 float alpha = Interpolators.ALPHA_IN.getInterpolation(fadeInAmount);
  /packages/apps/Launcher3/src/com/android/launcher3/views/
AbstractSlideInView.java 18 import static com.android.launcher3.anim.Interpolators.scrollInterpolatorForVelocity;
35 import com.android.launcher3.anim.Interpolators;
76 mScrollInterpolator = Interpolators.SCROLL_CUBIC;
146 .setInterpolator(Interpolators.DEACCEL);
172 .setInterpolator(Interpolators.ACCEL);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
PipDismissViewController.java 34 import com.android.systemui.Interpolators;
109 .setInterpolator(Interpolators.LINEAR)
122 .setInterpolator(Interpolators.LINEAR)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DividerHandleView.java 31 import com.android.systemui.Interpolators;
124 ? Interpolators.TOUCH_RESPONSE
125 : Interpolators.FAST_OUT_SLOW_IN);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
ImageTransformState.java 26 import com.android.systemui.Interpolators;
72 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation(
91 transformationAmount = Interpolators.LINEAR_OUT_SLOW_IN.getInterpolation(
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Interpolators.java 30 * Utility class to receive interpolators from
32 public class Interpolators {
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/res/values/
base-strings.xml 24 This sample demonstrates the use of animation interpolators and path animations for
  /development/samples/browseable/Interpolator/res/values/
base-strings.xml 24 This sample demonstrates the use of animation interpolators and path animations for
  /frameworks/base/core/java/com/android/internal/view/animation/
HasNativeInterpolator.java 28 * The idea here is to prevent subclasses of interpolators from being treated as a

Completed in 588 milliseconds

1 2 3 4 5 6 7 8