My app is showing name and icon. I want to hide name.
How i can do that?
You have to call `
getSupportActionBar().setDisplayShowTitleEnabled(false) - to hide it,
getSupportActionBar().setDisplayShowTitleEnabled(false)
or
getSupportActionBar().setTitle("new title"); - if you want to change it
getSupportActionBar().setTitle("new title");