このXMLレイアウトを使用して、アクティビティにフルスクリーンのVideoViewを表示します。ビデオはフルスクリーンですが、中央に配置されていません。横向きモードでは、画面の左側にとどまり、画面の右側に空白が残ります。
VideoViewを画面の中央に配置するにはどうすればよいですか?
<?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" >
<VideoView android:id="@+id/myvideoview"
android:layout_width="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent">
</VideoView>
</RelativeLayout>