user1403855
user1403855

Reputation: 31

Actionbar not visible

I have created an actionbar which has action items and fragment tabs. However,the actionbar and the fragment tabs are not visible in other activities. The manifest file also has the required:

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

How can i make the actionbar and fragment tabs permanent for the app?

Upvotes: 3

Views: 1373

Answers (1)

Dion Segijn
Dion Segijn

Reputation: 2655

// Set up the action bar.
final ActionBar actionBar = getActionBar();

I found this piece of code in my project. I hope it helps you out.

Upvotes: 4

Related Questions