0

当我在视频视图中播放视频但最初它很好,当视频开始播放时高度自动降低(chanded)。视频视图在相对布局内我需要紧急。谢谢提前。

4

1 回答 1

4

您好,我也遇到过这个问题,但我是这样设置的:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >
    <VideoView
        android:id="@+id/videoview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" >
    </VideoView>
</RelativeLayout>
于 2013-04-17T07:53:52.663 回答