How can I scale video in ExoPlayer-V2 – Play Video In Full Screen
Following two lines helped me to play video in full-screen mode. Using app:resize_mode in layout file this somehow help but it stretches the video as mentioned in the question picture. <com.google.android.exoplayer2.ui.PlayerView android:layout_width=”match_parent” app:resize_mode=”….” android:layout_height=”match_parent” /> Try changing AspectRatioFrameLayout to FILL,FIT,ZOOM… as per yout requirement, changing below line worked for me. exoVideoPlayerView.setResizeMode(AspectRatioFrameLayout.RESIZE_MODE_FILL); Bellow line will ensure … Read more