Z tej lekcji dowiesz się, jak zarejestrować detektor, aby aplikacja mogła otrzymywać powiadomienia zmian widoczności interfejsu systemu. Jest to przydatne, jeśli chcesz synchronizować inne części interfejsu użytkownika poprzez ukrywanie/wyświetlanie pasków systemowych.
Rejestrowanie detektora
Aby otrzymywać powiadomienia o zmianach widoczności interfejsu systemu, zarejestruj
View.OnSystemUiVisibilityChangeListener
.
Zazwyczaj jest to widok, którego używasz do sterowania widocznością nawigacji.
Możesz na przykład dodać ten kod do sekcji
Metoda onCreate()
:
Kotlin
window.decorView.setOnSystemUiVisibilityChangeListener { visibility -> // Note that system bars will only be "visible" if none of the // LOW_PROFILE, HIDE_NAVIGATION, or FULLSCREEN flags are set. if (visibility and View.SYSTEM_UI_FLAG_FULLSCREEN == 0) { // TODO: The system bars are visible. Make any desired // adjustments to your UI, such as showing the action bar or // other navigational controls. } else { // TODO: The system bars are NOT visible. Make any desired // adjustments to your UI, such as hiding the action bar or // other navigational controls. } }
Java
View decorView = getWindow().getDecorView(); decorView.setOnSystemUiVisibilityChangeListener (new View.OnSystemUiVisibilityChangeListener() { @Override public void onSystemUiVisibilityChange(int visibility) { // Note that system bars will only be "visible" if none of the // LOW_PROFILE, HIDE_NAVIGATION, or FULLSCREEN flags are set. if ((visibility & View.SYSTEM_UI_FLAG_FULLSCREEN) == 0) { // TODO: The system bars are visible. Make any desired // adjustments to your UI, such as showing the action bar or // other navigational controls. } else { // TODO: The system bars are NOT visible. Make any desired // adjustments to your UI, such as hiding the action bar or // other navigational controls. } } });
Ogólnie dobrze jest utrzymywać synchronizację interfejsu ze zmianami na pasku systemowym. widoczność. Możesz na przykład użyć tego detektora, aby ukryć i wyświetlić pasek działań w z ukrywaniem i wyświetlaniem paska stanu.