While put customview inside the scrollview like given below <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="false" > ``` <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> ``` </ScrollView> No media controls are displayed
While put customview inside the scrollview like given below
No media controls are displayed