4
<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 ?我怎样才能做到这一点?提前致谢....

4

2 回答 2

1

该站点的其他解决方案:

ScrollView 中的 MapView?

ScrollView 正在捕捉谷歌地图的触摸事件

对于 android map v2,请遵循此解决方案

于 2014-02-10T05:21:30.897 回答
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>
于 2013-04-23T06:37:12.317 回答