ExampleMediaController
ExampleMediaController copied to clipboard
FullScreen not working
when i click on full secrren button nothing happen
Add this to toggleFullScreen()
DisplayMetrics metrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics); android.widget.LinearLayout.LayoutParams params = (android.widget.LinearLayout.LayoutParams) videoSurfaceContainer .getLayoutParams(); params.width = metrics.widthPixels; params.height = metrics.heightPixels; params.leftMargin = 0; videoSurfaceContainer.setLayoutParams(params);