Friday, July 5, 2013

Removing the action bar

<activity android:theme="@android:style/Theme.Holo.NoActionBar">
You can also hide the action bar at runtime by calling hide(). For example:
ActionBar actionBar = getActionBar();
actionBar.hide();

No comments:

Post a Comment