full screen application android

后端 未结 8 780
暖寄归人
暖寄归人 2020-12-06 02:08

i have two questions:

  1. one how can i run my application in full screen
  2. how video players run videos in full screen.

i have tried alot an

8条回答
  •  感动是毒
    2020-12-06 02:30

    I made 2 layouts one for regular size and one for full screen and inside full scrreen I get the devices size and and assign it to video player

    Display display = getWindowManager().getDefaultDisplay();
    Point size = new Point();
    display.getRealSize(size);
    int w=size.x;
    int h=size.y;
    videoPlayer.setFixedSize(w, h);
    

提交回复
热议问题