I have a problem in my application, in the app I make a sequence of videos, but at the time I made the structure and inserted the video (not very graphic quality so the app does not get too big) VideoView means resized and got very small, anyone have any idea how I can solve this? Yes I do not care if the video gets ugly if it gets pixilated.
<?xml version="1.0" encoding="utf-8"?>
<VideoView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/VV1"
android:layout_weight="1" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_weight="0">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/btnVoltar"
android:id="@+id/button2"
android:layout_weight="2" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/btnAvanca"
android:id="@+id/button3"
android:layout_weight="2" />
</LinearLayout>