1
我正在android中工作。我正在使用VideoView。當方向爲肖像模式時,它會垂直拉伸。視頻屏幕垂直延伸
這是我的xml: -
<RelativeLayout
android:id="@+id/lineartop"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:layout_alignParentTop="true"
android:layout_marginTop="-5dip"
android:background="@drawable/tab" >
<TextView
android:id="@+id/fileNametitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:gravity="center"
android:textColor="#FFFFFF"
android:textSize="20dip" />
</RelativeLayout>
<VideoView
android:id="@+id/videoId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:fitsSystemWindows="true"
android:layout_marginBottom="5dip"
android:layout_centerHorizontal="true"
android:layout_above="@+id/VedioFooter"
android:layout_below="@+id/lineartop" />
<include android:id="@+id/VedioFooter"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
layout="@layout/bottom_layout_without_full_window_button" />
</RelativeLayout>
請建議我該怎麼做,以顯示我的視頻正確人像模式也。