Remove App Name From the Title Bar in Android Application

Android will show the name of that App in the title area, it can be removed by adding the line of code in the AndroidMainifest.xml file in your app,

android:theme="@android:style/Theme.NoTitleBar"

Place the code inside the application tag

The xml will look like this


        
            
                

                
            
        
      
    

Now there will be no app name in the title area.

Leave a Comment