How do you remove title text combined with noResizeGoodness() so that it only shows the icon highlighted with clicking on a tab (like instagram app)?
Hmm... how many questions are you asking ?
To remove the zooming animation, you got to use the fixed mode.
mBottombar.useFixedMode();
To remove the title how about setting the title to an empty string ?
I don't know if you are using an XML file in your bottombar, try to set this in your xml file
android:title=""
Hope it works,
@christaupher I wasn't able to delete my question so I just edited it =P
I already tried android:title="" and it doesn't work. It shows an empty view and it just takes up space as if something was there if you know what I mean...
I'm having the same issue, I had tried tittle="", also I had tried setting any title, but it shows "null" in the view.
Same problem here. Set title="" but no change in view.
@christaupher i can't see the method useFixedMode you mentioned in BottomBar
any luck removing tittle ? i also need the same feature as mentioned above.
I use setPadding() to finish this . Remember setting title to empty.
Example:
bottomBar.getTabWithId(R.id.tab_roomType).setPadding(0,PaddingTop,0,0);
See #373. This will be in the next release.
@abc873693 i need getTabWithId method code. please give me the method code.
@deepankumarp https://github.com/abc873693/BottomBardetitle
Most helpful comment
I'm having the same issue, I had tried tittle="", also I had tried setting any title, but it shows "null" in the view.