0
我想在我的應用程序的背景中播放視頻...如何在應用程序菜單後面實現視頻背景 - Android
在菜單中,並作爲啓動畫面。有點像在myspace.com
如何做到這一點,同時保持體面的表現和保持UI響應?
我想在我的應用程序的背景中播放視頻...如何在應用程序菜單後面實現視頻背景 - Android
在菜單中,並作爲啓動畫面。有點像在myspace.com
如何做到這一點,同時保持體面的表現和保持UI響應?
您將使用RelativeLayout n,然後將您的視頻放在VideoView上的RelativeLayout中...現在,您可以輕鬆地將按鈕,EditText等任何內容放在VideoView上,如您所願...... 一些示例如下所示....
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<VideoView
android:id="@+id/videoView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText1"
android:layout_alignTop="@+id/button1" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="83dp"
android:text="Button" />
<Button
android:id="@+id/button2"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:layout_centerHorizontal="true"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button2"
android:layout_centerHorizontal="true"
android:text="Button" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button3"
android:layout_centerHorizontal="true"
android:layout_marginTop="28dp"
android:ems="10" >
<requestFocus />
</EditText>
</RelativeLayout>
謝謝你的回答。但是,這不僅僅是把視頻放在一個地方,而是把按鈕放在其他地方......我需要視頻上的按鈕,切割它。另外,什麼是requestfocus?我只看到了結束標記... – user2896018
Here [鏈接](http://s.slideme.org/files/imagecache/screenshot-normal/screenshots/08/53/2093750-660798.jpg?_cid=1362406633)I顯示「俱樂部Ufone視頻列表」圖片在視頻..... 你的意思是完全一樣的嗎? – Sham
requestFocus的一般是在使用的EditText用於焦點上的EditText .... 即 由於requestFocus的標籤光標將在其中requestFocus的已被用於特定的EditText。 –
Sham