2011-10-20 67 views
2

當我將鼠標懸停在視頻上時,導航欄出現但未居中....任何想法如何居中?這裏是我的xml和截圖:VideoView下的中心視頻播放按鈕欄Android

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="#00ffffff"> 
    <VideoView 
    android:id="@+id/videoPlayer" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_centerInParent="true"/> 
    <ImageView 
    android:id="@+id/video_close_btn" 
    android:layout_width="36dp" 
    android:layout_height="36dp" 
    android:layout_alignTop="@id/videoPlayer" 
    android:layout_alignRight="@id/videoPlayer" 
    android:src="@drawable/close_button" 
    android:scaleType="fitXY"/> 
</RelativeLayout> 

enter image description here

回答

0

這應該工作:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="#00ffffff"> 
    <VideoView 
    android:id="@+id/videoPlayer" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_centerInParent="true"/> 
    <ImageView 
    android:id="@+id/video_close_btn" 
    android:layout_width="36dp" 
    android:layout_height="36dp" 
    android:layout_centerInParent="true" 
    android:src="@drawable/close_button" 
    android:scaleType="fitXY"/> 
</RelativeLayout> 
相關問題