The actionbar tag has no wiki summary.
26
votes
7answers
28k views
Android action bar like twitter sample
What is the best way to implement action bar like twitter sample UI Pattern.
Twitter for Android: A closer look at Android’s evolving UI patterns
Pattern 4: Action Bar
...
9
votes
3answers
762 views
Is there a standard way to add dividers between action bar items in Android 3.0?
I have a slight problem trying to customise the look of the action bar in my app. I want to be able to have the pixel wide dividers to group action bar items that you see in many of the native apps ...
8
votes
3answers
327 views
Full-width Spinner in ActionBar
I'd really like my app to have a Spinner which stretches the entire length of my ActionBar, like the one in Gmail 4.0. Anyone know how to achieve this? Even if I set "match_parent" in the Spinner ...
8
votes
3answers
5k views
What is the equivalent of ActionBar in earlier sdk versions?
Since the ActionBar is available only in Android 3.0 and later, what is a good way to implement ActionBar-like widget in earlier sdk versions? I am looking to do this programmatically without using ...
7
votes
2answers
1k views
Different between ActionBarSherlock and Action Bar Compatibility
What is the different between ActionBarSherlock and Action Bar Compatibility
Fews days ago Google just release the Action Bar Compatibility that make me so confuse. Is that the Action Bar ...
6
votes
2answers
249 views
How to Set a Custom Font in the ActionBar Title?
How (if possible) could I set a custom font in a ActionBar title text(only - not the tab text) with a font in my assets folder? I don't want to use the android:logo option.
Thnx for the help!!
6
votes
2answers
1k views
getActionBar() returns null
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 ...
6
votes
5answers
952 views
embedded font won't work in Flex mobile ActionBar
i've got a few fonts embedded and am using them in my mobile application, and they are all working, except for the ones i try to use for the "ActionBar". They work everywhere else, and substituting ...
6
votes
1answer
880 views
Contextual Action Bar in Honeycomb
I'm looking to copy the action bar implementation from the gmail app in Honeycomb
Unfortunately I can't post an image because I'm new here.
Basically, when you select an email or more your action ...
6
votes
1answer
4k views
Implementing ActionBar tabs with v4 Fragments API
My app is currently using the Fragments/v4 compatibility package to support Android versions all the way down to 1.6. This means all my Fragments inherit from the compatibility package's version of ...
6
votes
1answer
4k views
Fragments in Action Bar tab fragments?
Can you put fragments inside the fragment for a tab in the Action Bar?
I have a Android (3.0/Honeycomb) application with a main activity that has a Action Bar with 3 tabs. The tabs are added in my ...
5
votes
1answer
584 views
Android ICS: Remove blue divider in ActionBar?
I am working on an app which will be full-screen, but will utilize some of the functionalities of the ActionBar. With the Ice Cream Sandwhich release, I see that I get a blue line divider/separator as ...
5
votes
2answers
352 views
Need a definitive answer for styling Android ActionBar tabs
I've started my app with these two examples in mind:
http://code.google.com/p/iosched/
http://developer.android.com/resources/samples/HoneycombGallery/index.html
It currently has
minSdkVersion = ...
5
votes
2answers
659 views
Custom Home Icon in Action Bar Sherlock
I am trying to set custom icon for home icon using ActionBarSherlock library. I have tried to set custom layout using abHomeLayout attribute in my custom theme. But it didn't work for me. Only way, ...
5
votes
1answer
311 views
Android and Honeycomb - how to have a menu icon with SDK 13 without having an “action bar”
I would like to maximize use of the screen for a Honeycomb app. Since the bottom of the screen is already stuck with "always-on" items, I'd like to add a menu button down there in that space rather ...
5
votes
3answers
818 views
onCreateOptionsMenu is being called to many times in ActionBar using tabs
Here is my problem. I have an app where I am using ActionBar Sherlock with tabs, fragments with option menus. Every time I rotate the emulator, menus are added for all the fragments even those that ...
5
votes
2answers
389 views
Changing the ActionBar hide animation?
By default in Android 3.0+, when ActionBar.hide()/show() are called the bar is animated with a brief fade in/out animation.
There does not seem to be an XML style attribute in this list associated ...
5
votes
1answer
2k views
ActionBar background image
I've inherited the Holo Light Theme and customized the background of the ActionBar with the following:
Content of styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style ...
4
votes
1answer
1k views
How to use the Holo.Light theme but have the ActionBar use Holo withouth ICS?
I would like to have a dark ActionBar but have the rest of the application use the Holo.Light theme. I know there is a Theme.Holo.Light.DarkActionBar Theme in ICS/4.0 but I want this also to work in ...
4
votes
1answer
272 views
How to force overflow menu on android actionbar compat?
Android action bar compat
Is it possible? On older devices (pre 3.0) the itens that don't fit the action bar are only shown when the menu key is pressed, I want these itens to be grouped in the ...
4
votes
1answer
195 views
Start ICS emulator without Menu button
I'm trying to see the overflow menu in the ActionBar on ICS and I don't have a device.
I'm using the emulator and want to know, how do I start the emulator without a Menu button? I want to emulate a ...
4
votes
1answer
529 views
How can I force the Action Bar to be at the bottom in ICS?
Ice Cream Sandwich (Android 4.0) adds the option of having the Action Bar at the bottom of the screen on phones, and that's something I'd love to have in an application of mine. The docs mention ...
4
votes
3answers
758 views
Action bar in preference activity (Android)
In my application I am using the new Action Bar Compatibility sample from Google (http://developer.android.com/resources/samples/ActionBarCompat/) which works great. The only problem I have is ...
4
votes
3answers
1k views
Android: getSupportActionBar() always returns null in ActionBarSherlock library
I'm trying to use the ActionBarSherlock library to provide backwards compatible ActionBar support with tabs in my Android app, so I downloaded the latest build, built the demo, and ran it.
If you go ...
4
votes
1answer
443 views
Android: WebView ActionBar (Honeycomb)?
I have MyActivity with WebView element. When I "long press" on web view the ActionBar pops up. If I try to access the action bar like
getActionBar()
somewhere inside my activity I get null. It ...
4
votes
5answers
2k views
ActionBar pre Honeycomb
I am writing an app for android (2.1 > 3.1) and I would like to use the familiar practice of using the app Icon in Honeycomb apps to go up to the home activity, however, when I run the activity on ...
4
votes
2answers
2k views
Android Action Bar - With Tabs
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 ...
4
votes
2answers
2k views
Positioning menu items to the left of the ActionBar in Honeycomb
I want to position some menu items to the left of Honycomb's ActionBar, but have found no documentation showing how to do this. It looks like it should be possible since the Contacts app has search to ...
3
votes
3answers
128 views
Android menu and action bar conversion
There is a new concept in Android:
http://android-developers.blogspot.com/2012/01/say-goodbye-to-menu-button.html
But it isn't clear fro me. I have an application which is support from 1.6 to 4.0. ...
3
votes
1answer
169 views
Number of tabs in ActionBar
Android's ActionBar has a mode NAVIGATION_MODE_TABS. Using ActionBarSherlock 3.5.1 I have set this ActionBar and addded 5 tabs. On 2.x devices I see all tabs without horizontal scrolling. On 4.0.x I ...
3
votes
1answer
447 views
Showing the menu button on ICS while keeping android:targetSdkVersion to be 14
I have an existing app with a full screen viewer that uses the menu button to show options.
I've set the android:targetSdkVersion to be 14 to have the entire app theme look like a native ICS APP.
The ...
3
votes
1answer
57 views
Proper user experience for ActionBar on phones with Menu buttons?
I have an app that's built for Android 2.2, so I'm not using the 3.0+ built-in ActionBar class but rather building my own custom ActionBar implementation using Google's older UI recommendation that ...
3
votes
4answers
1k views
(ActionBar) Tabs + Pager + detail Fragments inside ViewPager container
For ActionBarSherlock I would like to have (Action Bar) Tabs + Pager. I use Fragments inside that pager container. I already got the examples of http://actionbarsherlock.com/ working, but I can't ...
3
votes
2answers
554 views
How to control ActionBar split programmatically?
The android ActionBar may split into a top and bottom bars if activity's parameter "uiOptions" is set to "splitActionBarWhenNarrow", note this parameter is only valid in ICS.
Honeycomb has introduced ...
3
votes
1answer
771 views
ActionBarCompat - App icon action (click) not working on 4.0 devices
I have this problem with the Android ActionBarCompat project: On emulators with Android 4.0 the click on the app icon doesn't cause any onOptionsItemSelected event, whereas it works on all other OS ...
3
votes
2answers
414 views
How can I detect a click on the ActionBar title?
For specific customer requirement, I need to allow the user of my app ( won't be published in Market) to click on the ActionBar title to execute some actions.
I have been looking in the Android ...
3
votes
2answers
133 views
Selectively enable Action Bar on some versions of Android
I have an application that I'm currently porting to tablets. During this transitional period I would like to have the app look very honeycomb-like when installed on tablets. In particular, I would ...
3
votes
1answer
205 views
How to dismiss keyboard in Android Honeycomb searchView
I have a searchView in the ActionBar. I want to dismiss the keyboard when the user is done with input. I have the following queryTextListener on the searchView
final SearchView.OnQueryTextListener ...
3
votes
1answer
527 views
How would I create a Spinner for use as an Action Item?
(Android 3.0+) How would I create a Spinner for use as an Action Item for Android Honeycomb's Action Bar? I understand that the Action Bar's LIST mode pretty much does that, but I would like to use ...
3
votes
1answer
783 views
Contextual Action Bar in Honeycomb
I'd like to change my Action Bar buttons in code according to whatever is selected on screen.
This is kind of like the Honeycomb Gmail app, where you can check a few mail items and get a different ...
3
votes
2answers
3k views
Action bar custom view
I want to declare a custom view, BUT I also want the home logo with up icon to appear on the left with its default functionality. How can I achieve to use both?
2
votes
3answers
83 views
+50
Custom Titlebar Within The Tab
Is there any way I can change the content of a 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 ...
2
votes
1answer
123 views
How to customize the back button on ActionBar
I have been able to customize the action bar's background, logo image and text color using suggestions from these :
Android: How to change the ActionBar "Home" Icon to be something other ...
2
votes
2answers
137 views
Correct implementation of android action bar (esp. now ICS is out)
I'm surprised that I cannot find much information on the internet about this. I would have thought that it would be a hot topic, especially with the release of ICS.
Anyway, I was wondering if anyone ...
2
votes
1answer
254 views
Define custom Logo for ActionBar (different than Logo) in XML?
I want to make a Actionbar_style.xml for my app and I would like to use a logo, different than my app logo / icon.
How to change it programmatcially is clear: Change logo that appears in Android ...
2
votes
2answers
185 views
Android Action Bar tabs
I am trying to build the ActionBar Tab with tabs bottom. Can some one please throw light on how to have the Android3+ version's ActionBar tabs at bottom?
2
votes
3answers
287 views
Android Split Action Bar with Action Items items on top and bottom?
Is there a way to specify some action items to the top part of the Split Action Bar while the others go to the bottom? Or is it all or nothing, whereby all the action items go to the bottom part of ...
2
votes
1answer
181 views
What can I use as an Action Bar replacement in Monodroid?
I'm trying to port a Monotouch app to Monodroid. My app has to target Android 2.1 as a minimum, but the Action Bar only seems to be available for Android 3.0 and upwards.
The iOS app is making use ...
2
votes
1answer
125 views
ActionBar throws NullPointerException
I couldnt figure out this one. I am customizing my ActionBar (and yes my App is for 3.0+) The code runs fine on Device(using Motorola xoom ,if it matters) .But when i run this on Emulator it throws ...
2
votes
1answer
93 views
Disable menubutton in the android emulator
When developing applications for ICS - the actionbar looks different depending on if there is a physical menubutton present on the device or not.
For example if not, a virtual button is displayed in ...