ss="add-code nl-10 ol-10">
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *******************************************************************************/
+package com.android.views.rotatephotoview.scrollerproxy;
+
+import android.content.Context;
+import android.widget.Scroller;
+
+public class PreGingerScroller extends ScrollerProxy {
+
+ private final Scroller mScroller;
+
+ public PreGingerScroller(Context context) {
+ mScroller = new Scroller(context);
+ }
+
+ @Override
+ public boolean computeScrollOffset() {
+ return mScroller.computeScrollOffset();
+ }
+
+ @Override
+ public void fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, int maxY,
+ int overX, int overY) {
+ mScroller.fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY);
+ }
+
+ @Override
+ public void forceFinished(boolean finished) {
+ mScroller.forceFinished(finished);
+ }
+
+ public boolean isFinished() {
+ return mScroller.isFinished();
+ }
+
+ @Override
+ public int getCurrX() {
+ return mScroller.getCurrX();
+ }
+
+ @Override
+ public int getCurrY() {
+ return mScroller.getCurrY();
+ }
+}
@@ -0,0 +1,48 @@ |
||
| 1 |
+/******************************************************************************* |
|
| 2 |
+ * Copyright 2011, 2012 Chris Banes. |
|
| 3 |
+ * |
|
| 4 |
+ * Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 |
+ * you may not use this file except in compliance with the License. |
|
| 6 |
+ * You may obtain a copy of the License at |
|
| 7 |
+ * |
|
| 8 |
+ * http://www.apache.org/licenses/LICENSE-2.0 |
|
| 9 |
+ * |
|
| 10 |
+ * Unless required by applicable law or agreed to in writing, software |
|
| 11 |
+ * distributed under the License is distributed on an "AS IS" BASIS, |
|
| 12 |
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 13 |
+ * See the License for the specific language governing permissions and |
|
| 14 |
+ * limitations under the License. |
|
| 15 |
+ *******************************************************************************/ |
|
| 16 |
+package com.android.views.rotatephotoview.scrollerproxy; |
|
| 17 |
+ |
|
| 18 |
+import android.content.Context; |
|
| 19 |
+import android.os.Build.VERSION; |
|
| 20 |
+import android.os.Build.VERSION_CODES; |
|
| 21 |
+ |
|
| 22 |
+public abstract class ScrollerProxy {
|
|
| 23 |
+ |
|
| 24 |
+ public static ScrollerProxy getScroller(Context context) {
|
|
| 25 |
+ if (VERSION.SDK_INT < VERSION_CODES.GINGERBREAD) {
|
|
| 26 |
+ return new PreGingerScroller(context); |
|
| 27 |
+ } else if (VERSION.SDK_INT < VERSION_CODES.ICE_CREAM_SANDWICH) {
|
|
| 28 |
+ return new GingerScroller(context); |
|
| 29 |
+ } else {
|
|
| 30 |
+ return new IcsScroller(context); |
|
| 31 |
+ } |
|
| 32 |
+ } |
|
| 33 |
+ |
|
| 34 |
+ public abstract boolean computeScrollOffset(); |
|
| 35 |
+ |
|
| 36 |
+ public abstract void fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY, |
|
| 37 |
+ int maxY, int overX, int overY); |
|
| 38 |
+ |
|
| 39 |
+ public abstract void forceFinished(boolean finished); |
|
| 40 |
+ |
|
| 41 |
+ public abstract boolean isFinished(); |
|
| 42 |
+ |
|
| 43 |
+ public abstract int getCurrX(); |
|
| 44 |
+ |
|
| 45 |
+ public abstract int getCurrY(); |
|
| 46 |
+ |
|
| 47 |
+ |
|
| 48 |
+} |