22

我的应用程序的主界面是一个viewpager,用户只需水平滑动页面即可到达各个页面。其中一页有一个谷歌地图视图(粘贴在下面)。我的问题是,如果用户在地图页面上并使用水平滑动手势,页面会滑动到下一页而不是地图横向移动。就好像 viewpager 在地图之前获取手势一样。

如果用户很聪明并开始沿对角线或垂直方向滑动地图,则地图开始移动,然后手势可以水平继续。但我更喜欢地图移动而不是简单的水平滑动手势上的页面。页面始终可以使用 textview 滑动。

有什么办法可以做到这一点?
谢谢,加里

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ContentPanel"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

 <TextView
    android:id="@+id/tvMAP"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Map"
    style="@style/bigtype" />


<com.google.android.maps.MapView
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:apiKey="mykeygoeshere"
    android:clickable="true" />

</LinearLayout>
4

2 回答 2

47

当然有:

public class CustomViewPager extends ViewPager {

    public CustomViewPager(Context context) {
        super(context);
    }

    public CustomViewPager(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected boolean canScroll(View v, boolean checkV, int dx, int x, int y) {
        if(v instanceof MapView){
            return true;
        }
        return super.canScroll(v, checkV, dx, x, y);
    }

}

这将使地图忽略地图内的所有幻灯片,而只关心地图外的幻灯片/拖动。希望能帮助到你。(我现在为具有水平滚动的 webview 执行此操作)

编辑:忘了提到你需要在你的布局中使用 CustomViewPager 而不是 ViewPager。

<com.yourpackage.CustomViewPager
            android:id="@+id/viewpager"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" 
        />
于 2012-08-24T23:28:09.107 回答
11

如果使用 Google Maps V2,请使用

scrollingView.getClass().getPackage().getName().startsWith("maps.")canScroll方法中:

@Override
protected boolean canScroll(View scrollingView, boolean checkV, int dx, int x, int y) {
    if (scrollingView.getClass().getPackage().getName().startsWith("maps.")) {
        return true;
    }
    return super.canScroll(scrollingView, checkV, dx, x, y);
}

因为使用 maps v2 时scrollingView是maps.jb。

同样在我的代码中,使用了这些类:

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
于 2013-02-24T23:16:00.857 回答