Force a full screen Activity to remeasure/redraw on resume?

后端 未结 8 1203
后悔当初
后悔当初 2021-01-05 05:14

Edited to add more details: (originally asked nearly two months ago...still haven\'t found a solution)

I have an activity with a somewhat complicate

8条回答
  •  情歌与酒
    2021-01-05 05:46

    Have you tried this in onResume()?

    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                                    WindowManager.LayoutParams.FLAG_FULLSCREEN );
    

提交回复
热议问题