VideoView Android下的中心视频播放按钮栏

时间:2011-10-20 13:44:14

标签: android android-videoview

当我将鼠标悬停在我的视频上时,会出现导航栏,但不会居中....任何想法如何居中?这是我的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>

enter image description here

1 个答案:

答案 0 :(得分:0)

这应该有效:

<?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>