/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/java/android/support/v4/widget/ |
EdgeEffectCompat.java | 23 * Helper for accessing {@link android.widget.EdgeEffect} introduced after 26 * This class is used to access {@link android.widget.EdgeEffect} on platform versions 46 public void setSize(Object edgeEffect, int width, int height); 47 public boolean isFinished(Object edgeEffect); 48 public void finish(Object edgeEffect); 49 public boolean onPull(Object edgeEffect, float deltaDistance); 50 public boolean onRelease(Object edgeEffect); 51 public boolean onAbsorb(Object edgeEffect, int velocity); 52 public boolean draw(Object edgeEffect, Canvas canvas); 63 public void setSize(Object edgeEffect, int width, int height) [all...] |
/external/chromium_org/content/browser/android/ |
edge_effect.h | 19 /* |EdgeEffect| mirrors its Android counterpart, EdgeEffect.java. 25 class EdgeEffect { 35 EdgeEffect(scoped_refptr<cc::Layer> edge, scoped_refptr<cc::Layer> glow); 36 ~EdgeEffect(); 84 DISALLOW_COPY_AND_ASSIGN(EdgeEffect);
|
overscroll_glow.cc | 88 for (size_t i = 0; i < EdgeEffect::EDGE_COUNT; ++i) { 93 edge_effects_[i] = make_scoped_ptr(new EdgeEffect(edge_layer, glow_layer)); 155 for (size_t i = 0; i < EdgeEffect::EDGE_COUNT; ++i) { 165 const gfx::SizeF sizes[EdgeEffect::EDGE_COUNT] = { 170 for (size_t i = 0; i < EdgeEffect::EDGE_COUNT; ++i) { 173 static_cast<EdgeEffect::Edge>(i)); 185 for (size_t i = 0; i < EdgeEffect::EDGE_COUNT; ++i) 193 for (size_t i = 0; i < EdgeEffect::EDGE_COUNT; ++i) { 209 float edge_overscroll_pull[EdgeEffect::EDGE_COUNT] = { 216 for (size_t i = 0; i < EdgeEffect::EDGE_COUNT; ++i) [all...] |
edge_effect.cc | 77 gfx::Transform ComputeTransform(EdgeEffect::Edge edge, 81 case EdgeEffect::EDGE_TOP: 83 case EdgeEffect::EDGE_LEFT: 87 case EdgeEffect::EDGE_BOTTOM: 89 case EdgeEffect::EDGE_RIGHT: 104 EdgeEffect::Edge edge, 117 EdgeEffect::EdgeEffect(scoped_refptr<cc::Layer> edge, 144 EdgeEffect::~EdgeEffect() { } [all...] |
overscroll_glow.h | 93 EdgeEffect* GetOppositeEdge(int edge_index); 95 scoped_ptr<EdgeEffect> edge_effects_[EdgeEffect::EDGE_COUNT];
|
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
OverScrollGlow.java | 12 import android.widget.EdgeEffect; 20 private EdgeEffect mEdgeGlowTop; 21 private EdgeEffect mEdgeGlowBottom; 22 private EdgeEffect mEdgeGlowLeft; 23 private EdgeEffect mEdgeGlowRight; 31 mEdgeGlowTop = new EdgeEffect(context); 32 mEdgeGlowBottom = new EdgeEffect(context); 33 mEdgeGlowLeft = new EdgeEffect(context); 34 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
|
Paper.java | 91 // This class follows the structure of frameworks's EdgeEffect class.
|
/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"; 134 * Construct a new EdgeEffect with a theme appropriate for the provided context. 135 * @param context Context used to provide theming and resource information for the EdgeEffect 137 public EdgeEffect(Context context) { 178 * Reports if this EdgeEffect's animation is finished. If this method returns false
|
HorizontalScrollView.java | 75 private EdgeEffect mEdgeGlowLeft; 76 private EdgeEffect mEdgeGlowRight; [all...] |
ScrollView.java | 82 private EdgeEffect mEdgeGlowTop; 83 private EdgeEffect mEdgeGlowBottom; [all...] |
AbsListView.java | 634 private EdgeEffect mEdgeGlowTop; 639 private EdgeEffect mEdgeGlowBottom; 845 mEdgeGlowTop = new EdgeEffect(context); 846 mEdgeGlowBottom = new EdgeEffect(context); [all...] |
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
pkg_android.widget.html | 84 <A NAME="EdgeEffect"></A> 85 <nobr><A HREF="../../../../reference/android/widget/EdgeEffect.html" target="_top"><code>EdgeEffect</code></A></nobr>
|
classes_index_additions.html | 192 <A HREF="pkg_android.widget.html#EdgeEffect" class="hiddenlink" target="rightframe"><b>EdgeEffect</b></A><br>
|
/frameworks/base/docs/html/training/gestures/ |
scroll.jd | 59 uses the {@link android.widget.EdgeEffect} class 212 // the EdgeEffect class to draw "glow" overlays.
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
HorizontalScrollView.java | 38 import android.widget.EdgeEffect; 73 private EdgeEffect mEdgeGlowLeft; 74 private EdgeEffect mEdgeGlowRight; [all...] |
/development/samples/training/ContactsList/libs/ |
android-support-v4.jar | |
/development/samples/training/InteractiveChart/libs/ |
android-support-v4.jar | |
/development/samples/training/bitmapfun/libs/ |
android-support-v4.jar | |
/external/robolectric/lib/main/ |
android-support-v4.jar | |
/sdk/apps/NotificationStudio/libs/ |
android-support-v4.jar | |
/frameworks/base/docs/html/tools/support-library/ |
index.jd | 541 <li>Added support for {@link android.widget.EdgeEffect}.</li> 566 support {@link android.widget.EdgeEffect}.</li>
|
/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...] |