user3495439
user3495439

Reputation: 1

Hide app icon and name from an android layout

I am trying to develop an app(android:minSdkVersion=8, android:targetSdkVersion=19).I want to remove the app name and icon from the layout.I used this.

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

but it hide only the app name but not app icon..how is it possible?

Upvotes: 0

Views: 974

Answers (1)

Nickel
Nickel

Reputation: 447

Before setContentView on the pages:

requestWindowFeature(Window.FEATURE_NO_TITLE);

Upvotes: 1

Related Questions