0

How can I change navigation bar icons to dots? You can see what I mean in the picturesnormal mode fade mode Thanks

MehDi
  • 504
  • 6
  • 20

1 Answers1

0

You can do so using SYSTEM_UI_FLAG_LOW_PROFILE:

getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
MohanadMohie
  • 1,033
  • 1
  • 10
  • 17
  • thanks for your answer, but I did it befor asking this question, but I didn't see any change – MehDi Oct 26 '16 at 22:36
  • I tried it on the emulator and it worked, maybe the case is different with actual devices. This is the recommended way of doing it [as per the documentation](https://developer.android.com/training/system-ui/dim.html). Check out [how to manage the system UI](https://developer.android.com/training/system-ui/index.html) and try different combinations of flags. – MohanadMohie Oct 26 '16 at 22:51