requestWindowFeature(Window.FEATURE_NO_TITLE); causing the App to crash?

前端 未结 2 1885
粉色の甜心
粉色の甜心 2020-12-21 10:57

The App crashs when I add this line

`requestWindowFeature(Window.FEATURE_NO_TITLE);

may be the solution is very simple, but i really dont know who to fix it.

相关标签:
2条回答
  • 2020-12-21 11:36

    you must call requestWindowFeature(Window.FEATURE_NO_TITLE); before setContentView()...

    public class GLSurfaceCameraSurfaceDemo2Activity extends Activity {
    /** Called when the activity is first created. */
    
    GLSurfaceView glSurfaceView;
    FrameLayout fl01;
    
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.main);
    
    }
    
    0 讨论(0)
  • 2020-12-21 11:45

    just do this :

    @Override
    public void onCreate(Bundle savedInstanceState) {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        super.onCreate(savedInstanceState);
    
        setContentView(R.layout.main);
    
    }
    

    you must declar requestWindowFeature(Window.FEATURE_NO_TITLE); before super.onCreate(savedInstanceState);

    0 讨论(0)
提交回复
热议问题