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.
私はゲームを書きます。スプラッシュ画面で使用RequestWindowFeature(WindowFeatures.NoTitle);していますが、設定画面で無効にするにはどうすればよいですか?
RequestWindowFeature(WindowFeatures.NoTitle);
Createの設定アクティビティで、次を実行します。
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); getWindow().setTitle("Settings");
Monoの対応するコードは次のようになります
RequestWindowFeature(WindowFeatures.CustomTitle); Window.SetTitle("Settings");