소스 검색

- bugfix: video is now playing in fullscreen

tobiasKaminsky 10 년 전
부모
커밋
b18fabe9d7
1개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. 5 4
      res/layout/video_layout.xml

+ 5 - 4
res/layout/video_layout.xml

@@ -3,9 +3,10 @@
 				android:layout_width="match_parent"
 				android:layout_height="match_parent" >
 
-	<VideoView  android:id="@+id/videoPlayer"
-				android:layout_width="wrap_content"
-				android:layout_height="wrap_content"  
-				android:layout_gravity="center" />
+	<VideoView
+	    android:id="@+id/videoPlayer"
+	    android:layout_width="fill_parent"
+	    android:layout_height="fill_parent"
+	    android:layout_gravity="center" />
 	
 </FrameLayout>