[Android Studio]下部のソフトキーを削除
4123 ワード
コードの追加
次のコード
int uiOptions = getWindow().getDecorView().getSystemUiVisibility();
int newUiOptions = uiOptions;
boolean isImmersiveModeEnabled = ((uiOptions | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY) == uiOptions);
if (isImmersiveModeEnabled) {
Log.i("Is on?", "Turning immersive mode mode off. ");
} else {
Log.i("Is on?", "Turning immersive mode mode on.");
}
newUiOptions ^= View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
newUiOptions ^= View.SYSTEM_UI_FLAG_FULLSCREEN;
newUiOptions ^= View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
getWindow().getDecorView().setSystemUiVisibility(newUiOptions);
結果
Reference
この問題について([Android Studio]下部のソフトキーを削除), 我々は、より多くの情報をここで見つけました https://velog.io/@hippohami/Android-Studio-하단-소프트-키없애기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol