Full screen videoview without stretching the video
问题 I wonder if I can get a way to let video run via videoview in full screen? I searched a lot and tried many ways such as: Apply theme in manifest: android:theme=\"@android:style/Theme.NoTitleBar.Fullscreen\" but that does not force the video to be in full screen. Apply in activity itself: requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); also does not force the video to be in full screen.