I'm using the Green Droid library in my application to implement quick actions. I don't need the action bar present in the theme. How can I remove the green strip at the top which is used for action bar? I've tried editing the theme but nothing seems to be working. Any help will be much appreciated. Thank you.
Asked
Active
Viewed 337 times
2 Answers
1
Add the following code to your onCreate()
method:
getActionBar().setVisibility(View.GONE);

Chilledrat
- 2,593
- 3
- 28
- 38

Giorgio Ghiatis
- 2,140
- 1
- 13
- 10