HomeSort by relevance Sort by last modified time
    Searched refs:EdgeEffect (Results 1 - 13 of 13) 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/base/core/java/android/webkit/
OverScrollGlow.java 25 import android.widget.EdgeEffect;
34 private EdgeEffect mEdgeGlowTop;
35 private EdgeEffect mEdgeGlowBottom;
36 private EdgeEffect mEdgeGlowLeft;
37 private EdgeEffect mEdgeGlowRight;
45 mEdgeGlowTop = new EdgeEffect(context);
46 mEdgeGlowBottom = new EdgeEffect(context);
47 mEdgeGlowLeft = new EdgeEffect(context);
48 mEdgeGlowRight = new EdgeEffect(context);
  /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 34 * <p>EdgeEffect is stateful. Custom widgets using EdgeEffect should create an
48 public class EdgeEffect {
50 private static final String TAG = "EdgeEffect";
132 * Construct a new EdgeEffect with a theme appropriate for the provided context.
133 * @param context Context used to provide theming and resource information for the EdgeEffect
135 public EdgeEffect(Context context) {
176 * Reports if this EdgeEffect's animation is finished. If this method returns false
HorizontalScrollView.java 72 private EdgeEffect mEdgeGlowLeft;
73 private EdgeEffect mEdgeGlowRight;
    [all...]
ScrollView.java 79 private EdgeEffect mEdgeGlowTop;
80 private EdgeEffect mEdgeGlowBottom;
    [all...]
AbsListView.java 620 private EdgeEffect mEdgeGlowTop;
625 private EdgeEffect mEdgeGlowBottom;
832 mEdgeGlowTop = new EdgeEffect(context);
833 mEdgeGlowBottom = new EdgeEffect(context);
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
HorizontalScrollView.java 38 import android.widget.EdgeEffect;
73 private EdgeEffect mEdgeGlowLeft;
74 private EdgeEffect mEdgeGlowRight;
    [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 

Completed in 560 milliseconds