I am trying to create a tab action bar on android but I seem to face problems when following tutorials. They usually will have resources which are not shown of which I am also not too sure what are they an causing me not being able to compile the project like in the tutorial. can someone kindly help me out with this. thanks.

link|improve this question

0% accept rate
which version of Android are you using? There is an ActionBar class in later versions of Android – Suchi Jun 23 '11 at 21:35
@Suchi i am running it on a android 3.0 tablet. i referred to a tutorial on youtube youtube.com/watch?v=gMu8XhxUBl8&feature=relmfu but i am having run time exceptions. – simplified. Jun 23 '11 at 22:00
feedback

3 Answers

Android has many examples in their APIDemos. This is one of them - http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/ActionBarTabs.html

link|improve this answer
yeah, i know about that, i tried running it on my tablet but it doesn't seem to work. the thing is that the codes in it have alot of other examples which makes things harder for me to see. – simplified. Jun 23 '11 at 22:29
feedback

Here is another sample project, covered in one of my books, that demonstrates tabs in the action bar, among other features.

link|improve this answer
feedback

It's important that you set "Theme.Holo" has your application main theme at the Android Manifest. Any Holo theme will do (Theme.Holo.Light, Theme.Holo.foo.bar)

Your tag has to be something like this

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Holo" >
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.