Bottom Navigation Android [duplicate] - android

This question already has an answer here:
How to make bottom navigation show menu items with icon and text except center item menu show only icon? [closed]
(1 answer)
Closed 5 years ago.
So I seen the new PlayStaion app for android and I was wondring if I can find a library to implement a bottom navigation like it if any one know a library like this please comment.
here is a screenshot of PlayStaion Android App

Use Bottom Navigation Activity.
Android Studio 2.3 is provided itself Bottom Navigation

Related

Hide App name in Navigation Drawer [duplicate]

This question already has answers here:
Hide ActionBar title just for one activity
(3 answers)
Closed 6 years ago.
I need some guide to remove the name of app which is quite annoying in top bar of navigation: App Top Bar Navigation
I'm using Toolbar and native google Navigation Drawer I tried some method like:
getSupportActionBar().setDisplayShowTitleEnabled(false);
but application stop working
or changing theme but not working
you must first call this setSupportActionBar(mToolbar);
also make sure that you are using style with Theme.AppCompat.Light.NoActionBar

Borde gap between status bar and AppBar [duplicate]

This question already has answers here:
Android Status Bar transparent with Navigation Drawer - Appbar elevation
(3 answers)
How to get the new NavigationView to play nice with status bar scrim?
(5 answers)
Closed 6 years ago.
I have an issue with a simple Android project I'm styling.
The issue is exactly like the one you can sse by creating and building a default project from Android Studio Navigation Drawer Activity: this template has the navigation drawer that covers also the status bar (like GMail, for example): but as you can see there is something like a gap between the appbar and the status bar.
I really don't like it and I would like to remove it somehow, but the only way I found at the moment (without create a detailed theme from scratch, which would be inconvenient for this simple project) is to put to edit values-v21/styles.xml from
<item name="android:statusBarColor">#android:color/transparent</item>
to
<item name="android:statusBarColor">#color/colorPrimaryDark</item>
but unfortunately that also prevents the navigation drawer to be shown full height!
I'm a little upset because I think that there is a very simple solution but I'm still not able to found it!

How to fix action menu location on action bar [duplicate]

This question already has answers here:
Android overflow menu positioned above actionbar/toolbar?
(4 answers)
Closed 8 years ago.
I am trying to fix this problem i am having. My Action Menu is showing up over the Action Bar. I want it to show below. Like it normally should. The theme i am using is Theme.AppCompat.
This is how i want it: http://postimg.org/image/m7lrmwl09/
This is how i have it: http://postimg.org/image/yqiutbnob/
I have tried changing the theme but i need an AppCompat theme.
This is not a problem, this is the new standard behavior for Material Design:
http://www.google.com/design/spec/components/menus.html#menus-usage

Navigation drawer from both left and right sides in one single activity [duplicate]

This question already has answers here:
Android - Is Navigation Drawer from right hand side possible?
(10 answers)
Closed 9 years ago.
I am want to create navigation drawer from both left and right sides of home screen using single activity is it possible. On left side I want to open menu and on right side notification drawer. I searched a lot many sources but I only found navigation drawer either from left or right code in single activity. Any suggestions please to create navigation drawer from both sides using single activity...
Any source where I can be able to continue.
You may want to think about using SlidingMenuLibrary with fragments. It's quite easy to use, and you can have your custom fragments on the left and right side of the screen, and all of this in a single activity (I know it's not a drawer, but you can make it work and look excatly the same).
The source: https://github.com/jfeinstein10/SlidingMenu
Google Play Demo: https://play.google.com/store/apps/details?id=com.slidingmenu.example

Giving setting menu button in android application [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Creating a sliding drawer with menu items
As shown in the screen shot attached i need to show a menu in my application. How it is possible ?
I guess you are using action bar sherlock library,If so, first enable homebutton which is on left side of an actionbar
mActionbar.setHomeButtonEnabled(true);
Then, Set Icon for that button
mActionbar.setIcon(R.drawable.image_name);

Categories

Resources