1
私はアンドロイドで働いています。私は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>
私もポートレートモードで正しく自分の動画を表示するために何をすべきかを私に提案してください。