2013-11-28 57 views
0

我有一个videoview播放视频,然后在那layout.But其他一些按钮,但视频的黑色条出现在布局的底部。我应该做什么使黑色条在videoview的底部。Android 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" 
    android:background="@color/White" > 

    <RelativeLayout 
     android:id="@+id/first_intro" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_marginBottom="10dp" 
     android:layout_marginLeft="14dp" 
     android:layout_marginRight="14dp" 
     android:layout_marginTop="14dp" 
     android:background="@color/intro2_bg" 
     android:padding="@dimen/sidearea_padding" > 

     <Button 
      android:id="@+id/remove_page_from_introthird" 
      android:layout_width="15dp" 
      android:layout_height="15dp" 
      android:layout_alignParentRight="true" 
      android:layout_marginTop="5dp" 
      android:background="@drawable/cross" /> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="fill_parent" 
      android:layout_above="@+id/footer_btns_layout_linear" 
      android:layout_centerInParent="true" 
      android:layout_marginBottom="20dp" > 

      <VideoView 
       android:id="@+id/videoView_introthree" 
       android:layout_width="match_parent" 
       android:layout_height="fill_parent" 
       android:layout_gravity="center_vertical" 
       android:background="@android:color/transparent" /> 
     </LinearLayout> 

     <LinearLayout 
      android:id="@+id/footer_btns_layout_linear" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:orientation="horizontal" 
      android:weightSum="1" > 

      <Button 
       android:id="@+id/prev_btn2" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:layout_marginBottom="8dp" 
       android:layout_marginRight="8dp" 
       android:layout_weight="0.5" 
       android:background="@drawable/previous_selecter" /> 

      <Button 
       android:id="@+id/nxt_btn2" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:layout_marginBottom="8dp" 
       android:layout_marginLeft="8dp" 
       android:layout_weight="0.5" 
       android:background="@drawable/get_start_selecter" /> 
     </LinearLayout> 
    </RelativeLayout> 

</RelativeLayout> 

回答

0

试试这个:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" > 

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center" 
    android:gravity="center" 
    android:orientation="vertical" 
    android:padding="5dip" > 

    <Button 
     android:id="@+id/mSDCardbutton" 
     android:layout_width="fill_parent" 
     android:layout_height="match_parent" 
     android:text="@string/play_sdcard" /> 

    <Button 
     android:id="@+id/mServerbutton" 
     android:layout_width="fill_parent" 
     android:layout_height="match_parent" 
     android:text="@string/play_server" /> 

    <Button 
     android:id="@+id/mRawbutton" 
     android:layout_width="fill_parent" 
     android:layout_height="match_parent" 
     android:text="@string/play_raw" /> 
</LinearLayout> 

<Button 
    android:id="@+id/mbutton" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/button" /> 

<VideoView 
    android:id="@+id/VideoView" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center" /> 

</LinearLayout> 

在这种布局中,按钮位于top.You可以保持在底部。 希望这有助于。

+0

我尝试了外部布局中的视频视图和内部布局中的按钮,但它不起作用。 – Anu

+0

不工作意味着?它显示任何错误? –

+0

我的意思是在视频悬停时出现的黑条在底部按钮的顶部 – Anu