I was wondering if there is presently a way in MVVMCross to do a custom title bar on the MvxTabsFragmentActivity?
I'm using the MvxTabsFragmentActivity to implement the ActionBar. In all of the documentation I've seen you need to request this feature in the OnCreate method of the activity.
When I try to do this:
protected override void OnCreate (Bundle savedInstanceState)
{
RequestWindowFeature(WindowFeatures.CustomTitle);
base.OnCreate (savedInstanceState);
}
I get an error that says "You cannot combine custom titles with other title features." When it hits:
base.OnCreate (savedInstanceState);
I've tried doing base.RequestWindowFeature(WindowFeatures.CustomTitle) but I get the same error.
I'm not seeing anything in MvxTabsFragmentActivity that does anything with the title bar... Has anyone else tried to do this?
Thanks!