Itay Braha
Itay Braha

Reputation: 536

How to make a bottom App Bar for the whole app on Android?

I have implemented successfully a bottom app bar on my MainActivity. However, I wish it to be used on the whole app as well. Is there a clean code solution that uses that bar on other activities as well?

thanks in advance!

Upvotes: 0

Views: 65

Answers (1)

Romain Goutte-Fangeas
Romain Goutte-Fangeas

Reputation: 789

I'll suggest you to use Fragments in your app if you want a single BottomAppBar.

This article seems to be a good introdutction: https://proandroiddev.com/fragments-swapping-with-bottom-bar-ffbd265bd742

Upvotes: 1

Related Questions