2011-11-22 66 views

回答

0

在XML定義試試你的VideoView作爲

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" android:layout_height="fill_parent"> 
<VideoView android:id="@+id/videoView1" android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentRight="true" 
     android:layout_alignParentTop="true" 
     android:layout_alignParentBottom="true"></VideoView> 
</RelativeLayout> 
+0

雅我也這樣想,但我沒有得到預期的結果。感謝您的答覆 – user897936

+1

把你的XML代碼有問題,所以其他人可以知道你在嘗試什麼,可以幫助你 – MKJParekh

0

把之前的setContentView這段代碼你的活動

requestWindowFeature(Window.FEATURE_NO_TITLE); 
     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
       WindowManager.LayoutParams.FLAG_FULLSCREEN); 

我認爲它可以幫助你。

+0

我已經嘗試過,但我無法得到結果。 – user897936

+0

請在這裏給一些代碼,以便我可以檢查 – bindal