在我的項目中,我將width和height的線性佈局視爲full_parent,並且我將寬度和高度的VideoView添加爲fill_parent,但視頻不佔用整個屏幕。無法以全屏模式播放Android VideoView。
在此先感謝。
在我的項目中,我將width和height的線性佈局視爲full_parent,並且我將寬度和高度的VideoView添加爲fill_parent,但視頻不佔用整個屏幕。無法以全屏模式播放Android VideoView。
在此先感謝。
在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>
把之前的setContentView這段代碼你的活動
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
我認爲它可以幫助你。
我已經嘗試過,但我無法得到結果。 – user897936
請在這裏給一些代碼,以便我可以檢查 – bindal
雅我也這樣想,但我沒有得到預期的結果。感謝您的答覆 – user897936
把你的XML代碼有問題,所以其他人可以知道你在嘗試什麼,可以幫助你 – MKJParekh