I\'m trying to remove/disable the ActionBar. I tried to put in the Manifest:
in your oncreate() method use this
oncreate()
getActionBar().hide();
If your minSdkVersion is 10 or lower, instead use:
minSdkVersion
getSupportActionBar().hide();