Ognyan
Ognyan

Reputation: 13600

Reusable component: toolbar like in astro app for Android

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.

alt text

Upvotes: 1

Views: 432

Answers (1)

fredley
fredley

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

Related Questions