<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>
Here is my XML File. So when i click on the map, it moves horizontally means left to right. Is there a way to move the MapView in both direction scrolling inside the ScrollView ? How can i do that? Thanks in Advance....