当我将地图放在Scrollview中时,它将水平移动但不能垂直移动

时间:2013-04-23 06:32:16

标签: android map scrollview

<ScrollView  
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" > 
            <LinearLayout
                android:id="@+id/below_layout_1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/layout_background" >
                <com.google.android.maps.MapView
                    android:id="@+id/mpDelivery"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                   android:clickable="true" >
                </com.google.android.maps.MapView>
                <LinearLayout
                    android:id="@+id/zoom"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:layout_centerHorizontal="true" >
                </LinearLayout>
            </LinearLayout></ScrollView>

这是我的XML文件。 所以当我点击地图时,它水平移动意味着从左到右。有没有办法在ScrollView内部双向滚动MapView? 我怎样才能做到这一点? 在此先感谢....

2 个答案:

答案 0 :(得分:1)

本网站的其他解决方案:

MapView inside a ScrollView?

ScrollView is catching touch event for google map

对于android map v2,请关注this solution

答案 1 :(得分:0)

试试这个:

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/bg" >

    <FrameLayout
        android:id="@+id/below_layout_1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

         <com.google.android.maps.MapView
                    android:id="@+id/mpDelivery"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                   android:clickable="true" >
                </com.google.android.maps.MapView>
        <LinearLayout
            android:id="@+id/zoom"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:gravity="center" >
        </LinearLayout>
    </FrameLayout>

</RelativeLayout>