1
I have a problem in my application, in the app I make a sequence of videos, but at the time I did the structure and inserted the video (it is not of much graphic quality so the app does not get too big) Videoview kind of resized and was very small, Does anyone have any idea how I can fix this? Yeah I don’t care if the video gets ugly if it gets pixelated.
<?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>
could post the xml code of this Videoview?
– Luccas Melo