2013-10-31 68 views

回答

0

您將使用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> 
+0

謝謝你的回答。但是,這不僅僅是把視頻放在一個地方,而是把按鈕放在其他地方......我需要視頻上的按鈕,切割它。另外,什麼是requestfocus?我只看到了結束標記... – user2896018

+0

Here [鏈接](http://s.slideme.org/files/imagecache/screenshot-normal/screenshots/08/53/2093750-660798.jpg?_cid=1362406633)I顯示「俱樂部Ufone視頻列表」圖片在視頻..... 你的意思是完全一樣的嗎? – Sham

+0

requestFocus的一般是在使用的EditText用於焦點上的EditText .... 即 由於requestFocus的標籤光標將在其中requestFocus的已被用於特定的EditText。 – Sham

相關問題