How can i get the button to be on top of the video view instead of above it? Here's the code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<Button
android:id="@+id/btnHD"
style="@style/btnStyleGenoa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Turn HD On" />
<VideoView
android:id="@+id/videoView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />
</LinearLayout>
Many Thanks
you can simply use this: