Is there any way to change the content of the title bar when it's in Tab(If it wasn't in tab I would have done it but tried couldn't find any solution). E.g. Suppose I have created a custom title bar with few buttons on it, and now I want to change the content of the title bar(Drawables, Title and the functionality).

It would be great if someone could tell me if i can implement Action bar in versions below 3.0 ? I am creating this project in 2.1 (I'd like to create action bar from scratch).

or if there's any way besides inserting an image and placing buttons on it(This methodology would be good enough)?

link|improve this question

do you want to changes the main activity title from child tab? – Sameer Feb 22 at 12:29
I want to change the title when it's inside the tab. E.g. I have a Tab which contains 5 tabs. Now for each of these 5 tabs i wanna show their own titles and different buttons on the title bar. – Gaurav Feb 23 at 12:07
1  
can you post images(using paint) for more clarification – Sameer Feb 23 at 12:10
Please have a glance cdn.loopinsight.com/wp-content/uploads/… I wanna implement like this like they do in Iphone. Here for the 'Home Tab' There's "Bands Found" button, I wanna change the content @ title bar for other tabs like suppose for Advanced tabs i'd like to add back button and another button there. – Gaurav Feb 25 at 18:29
feedback

3 Answers

up vote 3 down vote accepted
+25

If you're just looking to implement the ActionBar paradigm in pre-Honeycomb versions of Android, I suggest you look into using the ActionBarSherlock library.

The library will automatically use the native action bar when available or will automatically wrap a custom implementation around your layouts. This allows you to easily develop an application with an action bar for every version of Android back through 1.6.

link|improve this answer
but the main problem is that i want to change the content of title bar when it is in tab. – Gaurav Feb 20 at 7:21
One way you could do this is to have multiple ViewGroups (action bars) in your layout with different contents. You could set the visibility of all but one to "gone" (or "invisible"). Then, in your Activity or Fragment, you can toggle the visibility of each view depending on what content you want displayed. This would work well if there is a limited number of permutations that you want displayed. If you want the content to be truly dynamic, you might need to take a different solution. Could you give an example of what a user would have to do to see different content? – twaddington Feb 20 at 18:17
feedback

twaddington and pjco's answers are correct, you need to use ActionBarSherlock if you want to be compatible with every SDK levels.

I want to add you can have a custom actionbar or a custom view for your actionbar tabs using the method actionbar.setCustomView(view) or tab.setCustomView(view)

Anyway, play with ActionBarSherlock demos, there are a few cool use cases.

link|improve this answer
Okay, thanks for the link I'll try :) – Gaurav Feb 23 at 12:05
feedback

The other option worth looking at is ActionBarCompat, which I think comes with the SDK 14 api demos. However, ActionBarSherlock seems to support many more features so that may be the better solution.

link|improve this answer
I wanna use it in 2.1 and i wanna build my own action bar without using any library. Would it be a good option to use the images and put the buttons on it? – Gaurav Feb 23 at 12:04
ActionBarCompat is just an example class that works back to 1.6 (I think), ActionBarSherlok is a Library but more stable and with more features. Either way if you dont want to use a Library, just make a RelativeLayout or something. – pjco Feb 26 at 8:03
feedback

Your Answer

 
or
required, but never shown

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