altosdroid: Add map types and map preloading UIs
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / AltosViewPager.java
1 /*
2  * Copyright © 2013 Mike Beattie <mike@ethernal.org>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package org.altusmetrum.AltosDroid;
19
20 import android.content.Context;
21 import android.support.v4.view.ViewPager;
22 import android.util.AttributeSet;
23 import android.view.View;
24
25 public class AltosViewPager extends ViewPager {
26
27     public AltosViewPager(Context context) {
28         super(context);
29     }
30
31     public AltosViewPager(Context context, AttributeSet attrs) {
32         super(context, attrs);
33     }
34
35     @Override
36     protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) {
37         if (v.getClass().getName().endsWith("MapView"))
38             return true;
39
40         if(v.getClass() != null &&
41            v.getClass().getPackage() != null &&
42            v.getClass().getPackage().getName() != null &&
43            v.getClass().getPackage().getName().startsWith("maps."))
44         {
45             return true;
46         }
47         return super.canScroll(v, checkV, dx, x, y);
48     }
49
50 }