[ion/android] Hide the status bar and navigation buttons

This is a hack, we should find why this was broken after v12.
This commit is contained in:
Léa Saviot
2020-03-23 17:32:29 +01:00
committed by EmilieNumworks
parent 5f5636fe4d
commit f31de20039

View File

@@ -62,4 +62,13 @@ public class EpsilonActivity extends SDLActivity {
);
}
@Override
protected void onCreate(Bundle savedInstanceState) {
/* This is done to hide the status bar and the bottom navigation buttons.
* TODO: This was not needed for v12 of Epsilon, find out why and make a
* proper fix? */
super.onCreate(savedInstanceState);
setWindowStyle(true);
}
}