0

Here's a link I want to hide the action bar (application title bar)/full screen activity of application how can i do that??

Juzar
  • 13
  • 1
  • 7

1 Answers1

0

You can hide the action bar by adding <android:theme="@android:style/Theme.NoTitleBar"> to your manifest, or programmatically :

getActionBar().hide();

// with abs
getSupportActionBar().hide();

This link may be helpfull

Community
  • 1
  • 1
S.Thiongane
  • 6,883
  • 3
  • 37
  • 52