How can I remove the green strip in the GreenDroid theme?

345 Views Asked by At

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.

2

There are 2 best solutions below

0
On

check this

it shows how to use the greendroid library to do what you need and other basic task. Although its in french but if you view it in google chrome, it should translate it for you.

0
On

Add the following code to your onCreate() method:

getActionBar().setVisibility(View.GONE);