I want to customise the ActionBar on Android in a TabbedPage to add a logo at the left of the action bar.
What event do I override and how do I get access to the ActionBar?
I'm thinking something like this:
[assembly: ExportRendererAttribute(typeof(TabbedPage), typeof(CustomTabbedPage))]
public class CustomTabbedPage : TabbedRenderer
{
protected override void OnAttachedToWindow()
{
base.OnAttachedToWindow();
var actionBar = ????
}
}
Are there any examples of custom tabbed pages?