目前的需求是需要在Intent第三方app的時候希望可是設定為FullScreen
讓StatusBar跟NevigationBar消失
所以就想說可不可以使用浮層讓畫面一直為FullScreen
這樣就可以讓我Intent其他app時也變成全屏
public void onCreate() {
super.onCreate();
oView = new LinearLayout(this);
oView.setBackgroundColor(0x88ff0000); // The translucent red color
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
0 | WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
PixelFormat.TRANSLUCENT);
params.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN;
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE);
wm.addView(oView, params);
}
這是我目前的做法,但無法達到StausBar跟NevigationBar消失
請問有什麼辦法可以達到我想要的效果嗎?