I'm using the following code on my XML file to play a video, but when it plays the video on the device it won't fill the whole screen with video.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="fill_parent" />
</LinearLayout>