I already remove the title in onCreate() method.
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(
It might be crashing because you are using this.requestWindowFeature(Window.FEATURE_NO_TITLE); after setContentView();
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView()
Use this.requestWindowFeature(Window.FEATURE_NO_TITLE); in onCreate() of your Activity , before setContentView(); statement.
onCreate()
Activity
setContentView();