Центральная панель кнопок воспроизведения видео под VideoView Android

#android #android-videoview

#Android #android-видеообзор

Вопрос:

При наведении курсора мыши на мое видео появляется панель навигации, но она не центрирована …. есть идеи, как центрировать? Вот мой 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>
  

введите описание изображения здесь

Ответ №1:

Это должно сработать:

 <?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_centerInParent="true" 
    android:src="@drawable/close_button"
    android:scaleType="fitXY"/>
</RelativeLayout>