Firstly, there is the image of my current tab bar
What I want is either aligni
My solution isn't perfect, but to move the icons above the text here is what I have so far, which might be able to help you.
TabLayout.axml
MainActivity.cs
void AddTabToActionBar(int labelResourceId, int iconResourceId)
{
var tab = this.ActionBar.NewTab();
tab.SetCustomView(Resource.Layout.Tablayout);
tab.CustomView.FindViewById(Resource.Id.tabImage).SetImageResource(iconResourceId);
tab.CustomView.FindViewById(Resource.Id.tabText).SetText(labelResourceId);
tab.TabSelected += TabOnTabSelected;
ActionBar.AddTab(tab);
}