線形レイアウト内のビデオビューを全画面に拡大しようとしていますが、デバイスの画面と一致しません。これが私のコードです
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="720dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_gravity="fill_horizontal"
android:layout_marginTop="140dp" >
<VideoView
android:id="@+id/videoView1"
android:layout_width="fill_parent"
android:layout_height="720dp" />
</LinearLayout>
左右それぞれに常に10〜15dpのスペースがあります。また、線形レイアウトは全画面に拡大されていません。画面全体に広げてほしい。