我想知道 MVVMCross 目前是否有一种方法可以在 MvxTabsFragmentActivity 上做一个自定义标题栏?
我正在使用 MvxTabsFragmentActivity 来实现 ActionBar。在我看到的所有文档中,您需要在活动的 OnCreate 方法中请求此功能。
当我尝试这样做时:
protected override void OnCreate (Bundle savedInstanceState)
{
RequestWindowFeature(WindowFeatures.CustomTitle);
base.OnCreate (savedInstanceState);
}
我收到一条错误消息,提示“您无法将自定义标题与其他标题功能结合使用”。当它击中时:
base.OnCreate (savedInstanceState);
我试过做 base.RequestWindowFeature(WindowFeatures.CustomTitle) 但我得到了同样的错误。
我在 MvxTabsFragmentActivity 中没有看到任何对标题栏有任何作用的东西......还有其他人尝试过这样做吗?
谢谢!