I am already removing the header in the onCreate () method.
protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final ActionBar actionBar = getActionBar(); actionBar.setHomeButtonEnabled(false); actionBar.setDisplayShowHomeEnabled(false); actionBar.setDisplayUseLogoEnabled(false); actionBar.setDisplayShowTitleEnabled(false); }

The title is not displayed. But still appears when the application starts.

And I can use
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
or place
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
to the manifest file because I use actionBar. If I do this, the application will crash.
So my question is, is there a way to remove the title when the application starts, because I'm going to post a splash screen here. Thanks.
-----------
PLEASE NOTICE:
Thanks for your answers, but I clearly said that I already used actionBar.setDisplayShowTitleEnabled(false); to hide the activity title bar. (as shown in the first shot) , but the title bar is still displayed on the launch screen (as shown in the second figure.)
and
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
and
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
will trigger the crashes. This happens after I used the action bar.
source share