Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 MVVMCross 的新手,正在尝试构建我的第一个应用程序。
我想删除标题栏,我可以删除 MVVMCross 中的标题栏(红色矩形内的栏)吗?
谢谢!
我刚刚发现如何修复。只需在活动中使用主题,如下所示:
[Activity(Label = "View for MainMenu", Theme = "@android:style/Theme.Light.NoTitleBar")] public class MainMenuView : MvxPreferenceActivity<MainMenuViewModel> { }