remove actionbar title android studio code example
Example 1: remove action bar android studio
// In your Styles.xml file, change:
parent="Theme.AppCompat.Light.DarkActionBar"
// to:
parent="Theme.AppCompat.Light.NoActionBar"
Example 2: removing title bar from android app
res -> values -> styles.xml
<item name="windowNoTitle">true</item>