При наведении курсора на видео появляется панель навигации, но не по центру .... есть идеи, как центрировать?Вот мой xml и скриншот:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00ffffff">
<VideoView
android:id="@+id/videoPlayer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"/>
<ImageView
android:id="@+id/video_close_btn"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_alignTop="@id/videoPlayer"
android:layout_alignRight="@id/videoPlayer"
android:src="@drawable/close_button"
android:scaleType="fitXY"/>
</RelativeLayout>