我是Android应用程序开发的新手。
我开发了一个应用程序,我在视频文件上播放。它工作正常。但视频未全屏启用。
我的要求是我必须全屏播放视频。
请建议我继续前进。
谢谢。再见..
答案 0 :(得分:9)
只需为视频视图使用以下xml,它应以全屏模式播放
<?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/myvideoview"
android:layout_width="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent">
</VideoView>
</RelativeLayout>
请参阅此主题了解更多信息: playback video full screen