java - How do I only set the statusbar to transparent (opposed to statusbar + navigation bar) -
everything i've seen online far gives code similar this
if (build.version.sdk_int >= build.version_codes.kitkat) { window w = getwindow(); w.setflags(windowmanager.layoutparams.flag_layout_no_limits, windowmanager.layoutparams.flag_layout_no_limits); }
the problem sets status , navigation transparent , even bigger problem once navigation bar transparent, view right above gets hidden underneath , inaccessible. dont mind views getting hidden under status bar navigation bar doesnt work.
been searchig answer while, suggestions appreciated! thanks!
Comments
Post a Comment