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
1 answer

Android Kotlin - Material Bottom Navigation Disable Shift Mode and Selete Menu

I want to Disable Shift Mode with kotlin, I used material BottomNavigationView
TEN_KUNG
  • 1,229
  • 2
  • 5
  • 12
0
votes
1 answer

bottom navigation bar along with side navigation bar

i want to add bottom navigation bar along with side navigation bar but when i try i overlapped my toolbar. i try to add bottom navigation bar below the frame layout but it didnt work. thanks in advance
0
votes
2 answers

Hide bottom tab bar in tabbed page in Android with Xamarin.Forms

I created a tabbed page and set the navigation bar to the bottom. Now I need to hide the Navigation Bar on a specific page. For iOS I used this Renderer: here, but I couldn't found a similar solution for Android. I tried it with this: public…
0
votes
3 answers

I can't switch between tabs on a Bottom Navigation Bar in my App

I am having quite a challenge, i was following some tutorial project but when we reached a point of adding a bottom navigation bar, I have been stuck here for weeks trying to figure out where the problem is. The activity loads successfully but i…
AllanTumu
  • 3
  • 4
0
votes
0 answers

Android Bottom Menu view click Menu

Hello How can I do as it appears on the screen. Please. enter image description here
0
votes
1 answer

Can't properly hide the bottom navigation bar

I have created a drawer activity from the android studio templates and i did activate che full sticky immersive mode so that i don't always see the titlebar and the bottom navigation bar but the fact is that the bar is still there occuping space on…
0
votes
0 answers

Androidx Bottom Navigation Bar keeps highlight on hideable nav item

I'm hiding a bottom navigation item when user is not authenticated (that item will show up once the user is authenticated, which in this case, is a Messages Fragment). That works well, but when that fragment is shown and selected, the previous…
0
votes
1 answer

BottomNavigationView in a fragment, getting a 'must implement OnFragmentInteractionListener' error

I am using the Navigation Graph, and in one section of my app I want to use a BottomNavigationView in a fragment to navigate between three fragments, but I am getting an error: 'must implement OnFragmentInteractionListener'. The error says I should…
lcj
  • 1,355
  • 16
  • 37
0
votes
1 answer

Android Bottom Navigation - Call action from another navgraph

I've been struggling with this for a little while now. I'm using NavigationExtensions.kt with Bottom Navigation in a Java project. How do I call the action of one navgraph from another navgraph?
ibyte
  • 463
  • 4
  • 17
0
votes
0 answers

Synchronization between BottomNavigation and Fragments

I have a personalized Bottom Navigation in my main activity. That means I've created a Layout with 4 buttons on it and made it look like a Bottom Navigation, and each button will run a fragment. how can I avoid rebuilding the fragments after they…
0
votes
2 answers

Android Jetpack BottomNavigationView how to apply custom Fragment Transition

I want to add new fragment transition when BottomNavigationView change its current fragment. I want to enter the next fragment from left to right. I don't see this for Jetpack BottomNavigationView to add custom fragment transition animations because…
0
votes
1 answer

Show Bottom Navigation when Keyboard visible

I am Using Fragment where I click on EditText the keyboard visible and I need a Bottom Navigation should comes above the Keyboard.
0
votes
1 answer

How to make selected item clickable in bottom navigation

I have a bottom navigation, I check the selected item on its selection, and this prevent it from re selecting the same item again. So if I am on the home screen and I click home screen navigation item again, it does not do anything. I have a case…
dev90
  • 7,187
  • 15
  • 80
  • 153
0
votes
0 answers

BottomNavigationView switching between fragments quickly just crashes the app

I have a BottomNavigationView in my MainActivity and 3 fragments to switch in between. All these 3 fragments have almost the same content with some minor naming changes which will display a recyclerView with data from…
nick isra
  • 99
  • 1
  • 9
0
votes
1 answer

Android Studio change default bottom nav behaviour

I've used the default bottom navigation template in Android Studio. This has been working fine so far. However, I'd like to change one of the buttons to a button which triggers a camera intent. I'm not sure how to do this since I assume the default…