VideoView 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>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效:
This should work: