I'm having an odd problem. I am making an app with targetsdk 13.

In my main activity's onCreate method i call getActionBar() to setup my actionbar. This works fine when running on the Android 3.2 emulator, but when using Android 3.0 and 3.1 the getActionBar() method returns null.

I find this extremely odd, and i cannot see any reason why it would do so. Is this a bug with the emulators or is there something i need to do, in order to ensure that my application has an actionbar?

SOLUTION: I think I've found a solution for this problem. I wasn't using the setContentView to set a layout for the activity. Instead I was using fragmentTransaction.add(android.R.id.content, mFragment, mTag) to add a fragment to the activity. This worked fine in 3.2, but in earlier honeycomb versions the action bar is apparently not set if you don't use the setContentView in the onCreate() method. So I fixed it by using the setContentView() method in my onCreate() method and just supplying it with a layout that contained an empty FrameLayout. I can still use the fragmentTransaction.add(android.R.id.content, mFragment, mTag) method the same way as before.

It's not the prettiest fix, but it works.

link|improve this question
as you pointed in answering another post you need a Holo theme. Don't suppose you specified your holo theme in a v13 res folder only? Sorry if that sounds too obvious. – PJL Jul 29 '11 at 11:06
No, that was my first thought too, but that's not the case. Thanks for your reply though. – skogge Jul 29 '11 at 12:48
feedback

3 Answers

up vote 12 down vote accepted

I found this is just a half of the equation. You also need your Activity's window to have the title visible. I wrote an entire blog post about this topic.

link|improve this answer
Rally great post. I'm sure it will help a lot of people. – skogge Aug 9 '11 at 6:33
Yeah...! That's exactly that I was looking for! THX! – kyp Mar 1 at 14:59
feedback

I faced the above issue where getActionBar() method returns null. I was calling the getActionBar() after setting the setContentView() and still its returning a null.

I resolved the issue by setting the min-sdk version in Android Manifest file that was missing initially. <uses-sdk android:minSdkVersion="11" />

link|improve this answer
feedback

One thing I wanted to add since I just ran into this, if you are trying to getActionBar() on an Activity that has a parent, it will return null. I am trying to refactor code where my Activity is contained inside an ActivityGroup, and it took a good few minutes for me to go "oh duh" after looking at the source of how an ActionBar gets created in source.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.