0

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

4

2 回答 2

1

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

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setTitle("Settings");
于 2012-06-09T08:44:24.127 回答
0

Mono 中的相应代码是

RequestWindowFeature(WindowFeatures.CustomTitle);
Window.SetTitle("Settings");
于 2012-11-26T20:36:03.950 回答