altosdroid: Don't crash when the map is touched
[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() != null &&
38            v.getClass().getPackage() != null &&
39            v.getClass().getPackage().getName() != null &&
40            v.getClass().getPackage().getName().startsWith("maps."))
41         {
42             return true;
43         }
44         return super.canScroll(v, checkV, dx, x, y);
45     }
46
47 }