无法在全屏模式下播放Android VideoView。

时间:2011-11-22 05:22:35

标签: android

在我的项目中,我将宽度和高度的线性布局视为full_parent,并且我将宽度和高度的VideoView添加为fill_parent,但视频不占用整个屏幕。

提前致谢。

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

将此代码置于活动中的SetContentView之前

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

我认为这对你有所帮助。