Reputation: 13600
I really like the toolbar in Astro app for Android and I was wondering: Do you know if it is reusable component, is it open source, if yes - where to find it; if not - can you provide a link to similar open source component.
Upvotes: 1
Views: 432
Reputation: 33911
Make yourself a custom view, e.g. class myToolbar extends LinearLayout(context) {}
that contains your toolbar buttons and add this to any other Views where you want to display the toolbar.
Upvotes: 1