Reputation: 1
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
Reputation: 447
Before setContentView on the pages:
requestWindowFeature(Window.FEATURE_NO_TITLE);
Upvotes: 1