How to add footer to NavigationView – Android support design library?
If you want a fixed (non-scrolling) footer in your navigation menu, you need wrap NavigationView around another layout, like you’ve posted. NavigationView works like FrameLayout, so this ends up “stacking” the inner layout on top of the NavigationView menu items. Here’s one way to arrange it, using LinearLayout for the footer items: Fixed Footer <android.support.design.widget.NavigationView … Read more