android-navigation-bar

How do I set my status bar transparent but keep by navigation bar black?

蓝咒 提交于 2020-01-25 01:02:07
问题 As my question suggests, I am trying to figure out how to set my status bar color transparent while keeping my navigation bar black/natural color (without affecting the screen height) I referred to this site : Android Completely transparent Status Bar? one of the solutions that partially worked was : getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); but that pushes my screen content below navigation bar making it

How to hide android system' s bottom navigation bar in React Native App without changing MainActivity? Maybe through AndroidManifest?

百般思念 提交于 2020-01-23 16:59:05
问题 I want to hide the system's bottom navigation bar. I used "react-native-navigation-bar-color" but it causes a build error, strangely while release build only. I thought I could remove this package(react-native-navigation-bar-color) and permanently hide the navbar by changing MainActivity but the MainActivity in React Native does not inherit AppCompatActivity in order for it to have "onCreate" method in which I can write the code(as per android studio documentation) to hide. Following is the

Hiding the navigation bar immediately on app launch

你。 提交于 2019-12-24 00:40:07
问题 Based on the following code snippets, I was able to hide the status bar right when the app launches , but not the navigation bar (the bar consisting of the back, home, and task manager buttons) since it hides later after MainActivity's thread finishes loading up : Here's the manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="dpark.sample2"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher"

appcelerator titanium - hide navigation bar android

雨燕双飞 提交于 2019-12-20 05:54:31
问题 Is it possible to hide permanently the Android bottom navigation in Appcelerator Titanium? Many questions about this subject but no fine solutions. <fullscreen> true </fullscreen> in tiapp doesn't work with titanium 5.5.1 $.index.addEventListener('open', function(e) { $.index.activity.actionBar.hide();}); doesn't work. 'Window':{navBarHidden:true,tabBarHidden:true,fullscreen:true} in tss doesn't work etc. Thank you. 回答1: This method always worked for me, set the app to fullscreen without nav

appcelerator titanium - hide navigation bar android

*爱你&永不变心* 提交于 2019-12-20 05:54:15
问题 Is it possible to hide permanently the Android bottom navigation in Appcelerator Titanium? Many questions about this subject but no fine solutions. <fullscreen> true </fullscreen> in tiapp doesn't work with titanium 5.5.1 $.index.addEventListener('open', function(e) { $.index.activity.actionBar.hide();}); doesn't work. 'Window':{navBarHidden:true,tabBarHidden:true,fullscreen:true} in tss doesn't work etc. Thank you. 回答1: This method always worked for me, set the app to fullscreen without nav

Setting a light navigation bar makes it invisible

删除回忆录丶 提交于 2019-12-11 04:28:13
问题 I have set the following to have a light navigation bar: Window.DecorView.SystemUiVisibility = (StatusBarVisibility)SystemUiFlags.LightNavigationBar; However, in my app, the navigation bar became invisible: Gmail app showing the wanted result: 回答1: Setting LightNavigationBar, means that your buttons will fit a light theme (so they will be black, for a light background) - but you might want to change the navigationbar background as well. Here is how to do so in your activity: Window

How do you change the nav-bar background (not just color), even when not in foreground?

梦想与她 提交于 2019-12-03 07:11:47
问题 Background Somehow the app "Navbar Apps" allows to customize the background of the nav bar, even if it's not in the foreground, and even not just a simple color. The problem I thought it's only possible to change the color of it, and only when the app is in the foreground... I've seen it on some custom roms, even having special effects when music plays, but I didn't know it's possible to customize it even without a custom rom (or root). The questions Is it a hack? How do they change, not just

appcelerator titanium - hide navigation bar android

久未见 提交于 2019-12-02 11:23:07
Is it possible to hide permanently the Android bottom navigation in Appcelerator Titanium? Many questions about this subject but no fine solutions. <fullscreen> true </fullscreen> in tiapp doesn't work with titanium 5.5.1 $.index.addEventListener('open', function(e) { $.index.activity.actionBar.hide();}); doesn't work. 'Window':{navBarHidden:true,tabBarHidden:true,fullscreen:true} in tss doesn't work etc. Thank you. Ricardo Pereira This method always worked for me, set the app to fullscreen without nav bar and tab bar. Assuming your main Window's id is not set or is set to 'index', only this