So I been trying to use google maps lite fragment inside a scrollView and I haven't be able to show the map. After removing the the scrollView and leaving the fragment by it self, now is when you can see the map. I am just trying to understand why is that and also if there is any way possible to have this fragment to show at the end of my scrollView.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:map="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.joe.goout.EventDetails"> <ImageView android:src="@mipmap/park1" android:layout_width="fill_parent" android:layout_height="150dp" android:scaleType="centerCrop" android:adjustViewBounds="true" android:id="@+id/imageView" android:layout_alignParentRight="true" android:layout_alignParentEnd="true" /> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@+id/imageView" android:id="@+id/scrollView" android:fillViewport="false"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Medium Text" android:id="@+id/textView" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" /> </ScrollView> </RelativeLayout>