Кнопка Android, чтобы появиться на видео

Как я могу получить кнопку, чтобы она была сверху просмотра видео, а не над ним? Вот код:

<?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>

Большое спасибо

3 ответа

Решение

Вы можете просто использовать это:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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/videoView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal" />

<Button
    android:id="@+id/btnHD"
    style="@style/btnStyleGenoa"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_marginBottom="17dp"
    android:text="Turn HD On" />

Используйте ниже

<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout 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" />



 </RelativeLayout >

Наслаждаться:)

Санкет прав. Я расскажу тебе, как это работает. Вид, который записан последним в Относительном макете, является самым верхним видом этого макета (ось Z).

Другие вопросы по тегам