2011-10-20 9 views
2

내 비디오 위에 마우스를 가져 가면 탐색 모음이 나타나지만 가운데에 정렬되지 않습니다.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> 
여기 내 XML 및 스크린 샷입니다