Search code examples
javaandroidxamarinsamsung-galaxy

Change Galaxy S8 Navigation Bar Color Programmatically


Since galaxy s8 home/back/recent buttons are now soft keys, so i need to change the back color of the buttons within my application only.


Solution

  • You problem is solved in Lollipop and above,

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            Window window = getWindow();
        window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
        window.setNavigationBarColor(Color.YOUR_COLOR);
    }