Home > front end >  Trying to find out which Android control this is?
Trying to find out which Android control this is?

Time:07-10

I am new to Android so please bear with me...

Can someone tell which what the name of this control is in Android studio, I have been trying to google it but i just cant seem to find it!?

enter image description here

CodePudding user response:

If that is at the top of the screen, it would be a TabLayout. That usually sits below the Toolbar and is used along with a ViewPager to change the displayed fragments below it. When you link the two, it lets the user change view by either clicking on the tab, or with a swipe gesture.

If it was at the bottom of the screen, it could be a BottomNavigationView.

  • Related