<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? 我怎样才能做到这一点? 在此先感谢....
答案 0 :(得分:1)
答案 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>