【发布时间】:2016-04-27 13:32:08
【问题描述】:
我有一个视频视图,播放某个视频这是他的 xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">
Some other views
<VideoView
android:id = "@+id/video"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_gravity="center"
android:layout_alignParentStart="true"
/>
</RelativeLayout>
我正在尝试将视频置于其中,但每当我播放视频时, 它不会出现在中心,并且位置会根据视频有所变化,如何将其居中?
【问题讨论】:
-
在
Video View中尝试android:layout_centerInParent="true。 -
不工作这没有帮助
标签: android android-layout android-videoview