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

  /frameworks/support/v4/ics/android/support/v4/widget/
EdgeEffectCompatIcs.java 20 import android.widget.EdgeEffect;
23 * Stub implementation that contains a real EdgeEffect on ICS.
30 return new EdgeEffect(context);
33 public static void setSize(Object edgeEffect, int width, int height) {
34 ((EdgeEffect) edgeEffect).setSize(width, height);
37 public static boolean isFinished(Object edgeEffect) {
38 return ((EdgeEffect) edgeEffect).isFinished();
41 public static void finish(Object edgeEffect) {
    [all...]
  /frameworks/support/v4/api21/android/support/v4/widget/
EdgeEffectCompatLollipop.java 20 import android.widget.EdgeEffect;
23 public static boolean onPull(Object edgeEffect, float deltaDistance, float displacement) {
24 ((EdgeEffect) edgeEffect).onPull(deltaDistance, displacement);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
EdgeView.java 24 // EdgeView draws EdgeEffect (blue glow) at four sides of the view.
43 private EdgeEffect[] mEffect = new EdgeEffect[4];
48 mEffect[i] = new EdgeEffect(context);
68 // EdgeEffect draws the TOP edge from (0, 0) to (w, Y * h) where Y
EdgeEffect.java 29 // This is copied from android.widget.EdgeEffect with some small modifications:
41 * <p>EdgeEffect is stateful. Custom widgets using EdgeEffect should create an
55 public class EdgeEffect {
57 private static final String TAG = "EdgeEffect";
133 * Construct a new EdgeEffect with a theme appropriate for the provided context.
134 * @param context Context used to provide theming and resource information for the EdgeEffect
136 public EdgeEffect(Context context) {
156 * Reports if this EdgeEffect's animation is finished. If this method returns false
  /frameworks/base/core/java/android/widget/
EdgeEffect.java 36 * <p>EdgeEffect is stateful. Custom widgets using EdgeEffect should create an
50 public class EdgeEffect {
52 private static final String TAG = "EdgeEffect";
115 * Construct a new EdgeEffect with a theme appropriate for the provided context.
116 * @param context Context used to provide theming and resource information for the EdgeEffect
118 public EdgeEffect(Context context) {
121 com.android.internal.R.styleable.EdgeEffect);
152 * Reports if this EdgeEffect's animation is finished. If this method returns false
176 * <p>Views using EdgeEffect should favor {@link #onPull(float, float)} when the displacemen
    [all...]
HorizontalScrollView.java 79 private EdgeEffect mEdgeGlowLeft;
80 private EdgeEffect mEdgeGlowRight;
    [all...]
ScrollView.java 85 private EdgeEffect mEdgeGlowTop;
86 private EdgeEffect mEdgeGlowBottom;
    [all...]
AbsListView.java 665 private EdgeEffect mEdgeGlowTop;
670 private EdgeEffect mEdgeGlowBottom;
877 mEdgeGlowTop = new EdgeEffect(context);
878 mEdgeGlowBottom = new EdgeEffect(context);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 35 import android.widget.EdgeEffect;
60 * order to track velocity, modify EdgeEffect color & perform the originally specified animations.
145 private final EdgeEffect mEdgeGlowBottom;
146 private final EdgeEffect mEdgeGlowTop;
243 // Drawing must be enabled in order to support EdgeEffect
246 mEdgeGlowBottom = new EdgeEffect(context);
247 mEdgeGlowTop = new EdgeEffect(context);
797 // Examine the fling results in order to activate EdgeEffect and halt flings.
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ViewPager.java 47 import android.widget.EdgeEffect;
213 private final EdgeEffect mLeftEdge;
214 private final EdgeEffect mRightEdge;
376 mLeftEdge = new EdgeEffect(context);
377 mRightEdge = new EdgeEffect(context);
    [all...]
  /packages/apps/FMRadio/src/com/android/fmradio/views/
FmScroller.java 52 import android.widget.EdgeEffect;
113 private final EdgeEffect mEdgeGlowBottom;
174 // Drawing must be enabled in order to support EdgeEffect
177 mEdgeGlowBottom = new EdgeEffect(context);
537 // Examine the fling results in order to activate EdgeEffect when we
566 // Draw the EdgeEffect on the bottom of the Window (Or a little bit
568 // of the Window if we start to scroll upwards while EdgeEffect is
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java 73 import android.widget.EdgeEffect;
639 private final EdgeEffect mEdgeEffectTop;
640 private final EdgeEffect mEdgeEffectBottom;
769 mEdgeEffectTop = new EdgeEffect(context);
770 mEdgeEffectBottom = new EdgeEffect(context);
    [all...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 721 milliseconds