-2

I want to set action bar without title bar.

I have tried @android:style/theme.light.notitlebar as well as i also tried this link Adding an action bar to Theme.Black.NoTitleBar Android

but it is not working . Where i am wrong, please help me

Community
  • 1
  • 1
Harsh Parikh
  • 3,845
  • 3
  • 14
  • 14
  • check this out: http://stackoverflow.com/questions/2591036/how-to-hide-the-title-bar-for-an-activity-in-xml-with-existing-custom-theme – Ahmad Kayyali Sep 18 '13 at 07:21

1 Answers1

0
//Remove title bar
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
vish
  • 168
  • 2
  • 13
  • but i also need to remain action bar while doing this iotherwise it will show null pointer exception – Harsh Parikh Sep 18 '13 at 08:24
  • Try this link might help [Link](http://stackoverflow.com/questions/4171742/regarding-removal-of-activity-title-bar-in-android) – vish Sep 18 '13 at 08:51