From 689868ac47edceec08ed181d949e02c34276ffeb Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Tue, 18 May 2010 18:33:05 -0700 Subject: [PATCH] Small fix to surface window sample. Change-Id: Iaae90aaf8cfdb71c6201eba8a436450a75b2b732 --- .../src/com/example/android/apis/graphics/WindowSurface.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/samples/ApiDemos/src/com/example/android/apis/graphics/WindowSurface.java b/samples/ApiDemos/src/com/example/android/apis/graphics/WindowSurface.java index c7b03c1df..7829ec953 100644 --- a/samples/ApiDemos/src/com/example/android/apis/graphics/WindowSurface.java +++ b/samples/ApiDemos/src/com/example/android/apis/graphics/WindowSurface.java @@ -115,10 +115,14 @@ public class WindowSurface extends Activity implements SurfaceHolder.Callback { void step(int width, int height, float minStep, float maxStep) { x += dx; if (x <= 0 || x >= (width-1)) { + if (x <= 0) x = 0; + else if (x >= (width-1)) x = width-1; dx = adjDelta(-dx, minStep, maxStep); } y += dy; if (y <= 0 || y >= (height-1)) { + if (y <= 0) y = 0; + else if (y >= (height-1)) y = height-1; dy = adjDelta(-dy, minStep, maxStep); } }