how to remove title name in android app code example
Example 1: how to remove title bar android studio
change
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
to
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
Example 2: removing title bar from android app
res -> values -> styles.xml
<item name="windowNoTitle">true</item>