如何在android \ monodroid中取消RequestWindowFeature的效果?

时间:2012-06-09 07:56:07

标签: android user-interface xamarin.android

我写游戏。我在启动画面使用RequestWindowFeature(WindowFeatures.NoTitle);,但如何在设置屏幕上禁用它?

2 个答案:

答案 0 :(得分:1)

在您的设置活动onCreate中,运行以下命令:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setTitle("Settings");

答案 1 :(得分:0)

Mono中的相应代码将是

RequestWindowFeature(WindowFeatures.CustomTitle);
Window.SetTitle("Settings");