Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to not display Android application Name on every screen

I am finding that in my Android application, the name of the application is displaying on the top of every screen, consuming a line of valuable screen real estate.

I am using LinearLayouts

How can I get this not to display?

like image 341
Victor Grazi Avatar asked Mar 11 '12 18:03

Victor Grazi


1 Answers

You can set it in the Activity/Application tags in the manifest XML:

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

See more here (Styles and Themes).

like image 50
MByD Avatar answered Oct 26 '22 23:10

MByD