I did <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
but something similar is still appearing in my app with the App name on it. Before just doing NoActiobar in themes used to remove it. Apparently it's the tool bar.
What's the difference? And how do I remove my app name from it?
Asked
Active
Viewed 87 times
-1

user2626326
- 11
- 5
-
2Possible duplicate of [What is the difference between Action Bar and newly introduced Toolbar?](http://stackoverflow.com/questions/27665018/what-is-the-difference-between-action-bar-and-newly-introduced-toolbar) – Harshad Pansuriya May 29 '16 at 06:51
2 Answers
1
Main advantage of using Toolbar over ActionBar
- It can be customised easily
- It can be placed any where in the screen
- You can have more that 1 toolbar in a screen.

Flummox - don't be evil SE
- 2,109
- 6
- 24
- 46

Muthukrishnan Suresh
- 241
- 1
- 8
0
Probably something like this:
Toolbar mToolbar = new Toolbar(getSomeContext()); // or link to Standing Toolbar.
mToolbar.setTitle(""); // Empty String...
Have fun!

Flummox - don't be evil SE
- 2,109
- 6
- 24
- 46