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

发布于 2024-12-11 04:17:21 字数 823 浏览 0 评论 0原文

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

在此处输入图像描述

When I hover over my video, a navigation bar appears but is not centered....any ideas how to center? Here is my xml and screenshot:

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瞳孔里扚悲伤 2024-12-18 04:17:21

这应该有效:

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

This should work:

<?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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文