How can i make map(lite mode) twice large than screen and scroll(vertical) 
it using scrollview? I want to show long path with many additional info and 
i need to scroll through this path down!

Thanks.

p.s. I try to put mapView in LinearLayout(fix height 400dp) in ScrollView 
with out luck =(

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"xmlns:map="http://schemas.android.com/apk/res-auto"android:layout_width="match_parent"android:layout_height="match_parent"android:background="#F7F7F7"android:orientation="vertical";>

<RelativeLayout...>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android";
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    android:fillViewport="true"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="400dp"
        android:orientation="vertical">

        <com.google.android.gms.maps.MapView
            android:id="@+id/map_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:clickable="false"
            map:liteMode="true"
            map:mapType="normal" />

        <LinearLayout...>   

    </LinearLayout>
</ScrollView>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/dfa76086-4276-4ebe-8fb2-df6b31d23835%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to