I would like to create my own renderer for TabbedPage on Android (similar one to iOS tabs).
I need to create my own tabs. First think what I would like to do is to turn off tabs from action bar. I try this (on TabbedRenderer):
protected override void OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
base.OnElementPropertyChanged(sender, e);
AndroidActivity main = (AndroidActivity)Context;
main.ActionBar.NavigationMode = ActionBarNavigationMode.Standard;
}
but nothing is happening. Is that possible to turn off tabs from ActionBar? Maybe I use wrong Renderer?