This repository was archived by the owner on Mar 26, 2019. It is now read-only.

Description
While put customview inside the scrollview like given below
<RelativeLayout
android:id="@+id/video_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/black"
android:gravity="center_horizontal|center_vertical"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/videoSurfaceContainer"
android:layout_width="match_parent"
android:layout_height="160dp" >
<SurfaceView
android:id="@+id/videoSurface"
android:layout_width="wrap_content"
android:layout_height="160dp" />
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_below="@+id/videoSurfaceContainer"
android:background="#FFFFFF" >
</FrameLayout>
</RelativeLayout>
No media controls are displayed