nativescript
Statusbalk
Zoeken…
Verbergen / weergeven - Android
Dit is een statusbalk die u bovenaan uw scherm ziet met pictogrammen van battry, klok ....
let frame = require("ui/frame");
Verbergen:
frame.topmost().android.activity.getWindow().
getDecorView().setSystemUiVisibility(android.view.View.SYSTEM_UI_FLAG_FULLSCREEN);
Tonen:
frame.topmost().android.activity.getWindow().
getDecorView().setSystemUiVisibility(android.view.View.SYSTEM_UI_FLAG_VISIBLE );
Maak statusBar Transparant android
open APP_Resources/values/styles.xml en voeg de toe
<item name="android:windowTranslucentStatus">true</item>
in de
<style name="AppThemeBase" parent="Theme.AppCompat.Light.NoActionBar"> </style>
sectie.
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow