StatusBar

Other topics

Hide/show - android

This is a statusbar that you see on top of your screen with icons of battry,clock ... . enter image description here

let frame = require("ui/frame");

Hide:

frame.topmost().android.activity.getWindow().
getDecorView().setSystemUiVisibility(android.view.View.SYSTEM_UI_FLAG_FULLSCREEN);

Show:

frame.topmost().android.activity.getWindow().
getDecorView().setSystemUiVisibility(android.view.View.SYSTEM_UI_FLAG_VISIBLE );

Make statusBar Transparent android

open APP_Resources/values/styles.xml and add the

<item name="android:windowTranslucentStatus">true</item>

in the

<style name="AppThemeBase" parent="Theme.AppCompat.Light.NoActionBar"> </style> 

section.

Contributors

Topic Id: 6007

Example Ids: 21017,21018

This site is not affiliated with any of the contributors.