Requestwindowfeature(window.feature_no_title); Causing The App To Crash?
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. Java code: public clas
Solution 1:
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);
}
Post a Comment for "Requestwindowfeature(window.feature_no_title); Causing The App To Crash?"