2013年7月4日木曜日

android.util.AndroidRuntimeException: requestFeature() must be called before adding content

よくある忘れがちなエラー"android.util.AndroidRuntimeException: requestFeature() must be called before adding content"

setContentViewをウインドウ設定前に呼び出すと発生します。


       setContentView(R.layout.activity_main);//ウインドウ設定前だとエラー

       Window window = getWindow();
window.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
       requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.activity_main);//正しくはこっち



0 件のコメント:

コメントを投稿