ExampleMediaController icon indicating copy to clipboard operation
ExampleMediaController copied to clipboard

FullScreen not working

Open balasaheb143 opened this issue 11 years ago • 1 comments

when i click on full secrren button nothing happen

balasaheb143 avatar Oct 21 '13 06:10 balasaheb143

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);

swapnull-in avatar Jan 06 '14 09:01 swapnull-in