将全屏设置为onCreate

fsi*_*tre 8 android screen fullscreen oncreate

我只能在onCreate方法中设置我的活动到全屏(在setContentView之前)?

有没有什么方法可以在onCreate之外设置为全屏?

谢谢

fsi*_*tre 12

可能!添加此代码.


    // go full screen
    WindowManager.LayoutParams attrs = mActivity.getWindow().getAttributes();
    attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
    mActivity.getWindow().setAttributes(attrs);

    // go non-full screen
    WindowManager.LayoutParams attrs = mActivity.getWindow().getAttributes();
    attrs.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN);
    mActivity.getWindow().setAttributes(attrs);