Action bar not visible

I created an action bar with action items and snippet tabs. However, the action panels and snippet tabs are not displayed in other actions. The manifest file also matters:

        <uses-sdk android:minSdkVersion="4"
          android:targetSdkVersion="11" />

How can I make action and snippet tabs persistent for an application?

+3
source share
1 answer
// Set up the action bar.
final ActionBar actionBar = getActionBar();

I found this piece of code in my project. Hope this helps you.

+4
source

All Articles