Bottombar: Unknown white empty action bar

Created on 14 Jun 2016  路  4Comments  路  Source: roughike/BottomBar

When you are using toolbar, you will get an empty unknown, annoying, non-removable, white action bar. Its look terrible. Far as i know this bug happens in LG G3 5.0.0 .

Solution: This will happen if you not call the .noTopOffset() function. It takes my 3 days to solve this.

Most helpful comment

+1 for useOnlyStatusBarTopOffset()

All 4 comments

This is not helping for me. The white action bar is still there on Nexus 5x 6.0.1

Edit:
useOnlyStatusBarTopOffset right after attach woked for me

I run my codes in nexus 5x but its working good. Here is my flow:

mToolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(mToolbar);
        mBottomBar = BottomBar.attach(this, savedInstanceState);
        mBottomBar.noNavBarGoodness();
        mBottomBar.noTopOffset();
        mBottomBar.noTabletGoodness();
        mBottomBar.noResizeGoodness();

Can you share your flow too

+1 for useOnlyStatusBarTopOffset()

There's no ugly white space on top anymore. Those nasty "no*Goodness" and *offset methods are (thankfully) gone in the newest versions.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

zhangzhzh picture zhangzhzh  路  7Comments

cmonfortep picture cmonfortep  路  5Comments

vikramkakkar picture vikramkakkar  路  3Comments

ryanhoo picture ryanhoo  路  3Comments

german970814 picture german970814  路  8Comments