Questions tagged [android-bottomnav]

Bottom navigation bars display three to five destinations at the bottom of a screen.

Bottom navigation bars display three to five destinations at the bottom of a screen. Each destination is represented by an icon and an optional text label. When a bottom navigation icon is tapped, the user is taken to the top-level navigation destination associated with that icon.

270 questions
0
votes
2 answers

Text Size AppBar / NavBar Accessibility

The accessibility features in Android enables text size and display components to be enlarged but it seems that some of the native components don't quite allow this to occur as expected. 2 queries: This image shows a brand new bottom navigation…
0
votes
1 answer

How to Open Activity using getApplicationContext()?

I'm using a bottom navigation menu, on each itemMenu i'm calling a function to open the correct Activity: //In the activty "A" where there's the bottom nav bar: HelpActivity help = new HelpActivity(); case R.id.navigation_home: …
Machine
  • 3
  • 4
0
votes
2 answers

Always disable status bar and bottom bar in a custom launcher

I need to write custom android launcher with only one my application and with disabling android system statusbar and bottom bar. Here is my code in AndroidManifest.xml
0
votes
3 answers

How to make the body of app with a fixed bottom panel fill the rest of space

I am creating an app that has a fixed bottom panel. The contents of each panel should be displayed in the space above it. But whenever I populate the body with some contents, the contents overflow and overlap with the bottom panel. After I…
0
votes
1 answer

Is it possible to have different item color to diff items in bottomnavigationview?

I am trying to create a bottomNavigationView for my application. I have ended up creating a BMV which can highlight the menu items( using selectors) when selected just like the below images. However, I need something like having different colors…
0
votes
2 answers

BottomNavigationView from Android Support Library Obstructing the Views

I am using BottomNavigationView for bottom bar, and in an activity I am showing a list of objects in a listView. But the bottom bar that I have applied to that activity is obstructing the last element of the listView.. As you can see from the image…
Achy97
  • 994
  • 1
  • 14
  • 29
0
votes
2 answers

BottomNavigationView looks very bad

I'm using android support library BottomNavigationView , it looks very bad in some versions of android . this is my code :
0
votes
2 answers

Bottom navigation drawer showing wrong icon on items

I am working on Bottom Navigation drawer notifications, when I click any item of Bottom Navigation for notification, it is showing icon on the wrong Item. Lets say if I am clicking Item5 and calling method to show Notification there, then it is…
0
votes
1 answer

How to align bottom navigation bar icon center without text?

In my app, using bottom navigation bar. Inside bottom navigation bar,text not needed. so i put android:title="" but that icon always in top. how to set center?
Deepankumar
  • 57
  • 3
  • 11
0
votes
1 answer

android - cross fade animation to bottom navigation view

I'm beginner to android. In this project I have BottomNavigationView. I want to add cross-fade animation to this BottomNavigationView when switching from one view to another. Below is my code. bottom_nav.xml
0
votes
1 answer

how to make the BottomBar fixed in android?

this is my bottom bar and i want to make it fixed without this animation my navigation code
hossam rakha
  • 213
  • 6
  • 13
0
votes
1 answer

Bottom navigation view text

I have a bottom navigation view in my Main Activity and I want to change it to show the icon and the text only for the selected item and to show only the icons of the other 2 items. I had an idea to change it in the code on click and set the other…
0
votes
4 answers

Android Fragment is overlapping Toolbar Layout

[Updated] I've used Bottombar library and default android Navigation Drawer in my project. Now simple TextView Fragment is overlapping top Toolbar. This is my activity layout code. You can check Screenshot of Layout here. activity_main.xml
0
votes
4 answers

View Pager within a fragment

I have bottom navigation bar implemented with view pager. Now on the first fragment I want tabs on the top so I need a view pager inside of that fragment only. That view pager will have its own set of fragments. Is it possible? Can some one help me…
0
votes
1 answer

How to show ViewPager below of Toolbar in android

I want show some Fragments in my application and for this I want show viewPager and BottomNavigation. I want show this viewPager below of Toolbar, I write below codes but not work me and not show toolbar! MainPage codes:
1 2 3
17
18