Stacked action bar detection or qualifier [duplicate] - android

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Find out if ActionBar is stacked
Is there any qualifier or method how to detect, if stacked action bar is used? Or do you know the rules, when the stacked action bar is used (e.g. specific screen size)?
Stacked action bar is described on figures 9 and 10:
http://developer.android.com/guide/topics/ui/actionbar.html#Tabs

There isn't a specific method (e.g ActionBar.isStacked()), but you can make a reasonable guess based on some simple rules. Stacked bars are added on narrow devices (in practice this is typically phones in portrait mode). The menu items, icon and Title go on the top bar, and tabs go on the stacked bar. As it mentions in the guide you linked, if you remove the menu items, icon, and title, the top bar will disappear, leaving only the stacked bar. So if you want only one bar, that would be one workable strategy.
All that said, if you're just trying to use the overlay mode of the ActionBar and need to know how far down to put your content so that the bar doesn't hide it, getHeight() will return the height for the full bar (so both bars if stacked is in effect).

Related

center align icons in titanium action bar for android

Is there any possible way to center align the action item icons that are shown in action bar of titanium app for android. I have searched a lot of places for this solution but had no luck. I want the action bar to look like the below image. Also tell me the way to not show app title in the action bar.
This is not a Titanium issue.
As you can read in Google's documentation, you won't be able to center anything in the ActionBar. Default (and expected) behaviour is to align action icons on the right (or left if reversed).
I don't recommend it, as it goes against Google's guidelines, but you will be able to center icons if you create a fake ActionBar:
- Remove native ActionBar from any window in your app
- Create a Titanium View that mimics the ActionBar
- Add icons and bind click events.
That's it, you are done.

Put android tabs in center of action bar

I tried Android action bar with tabs. As you see in this picture:
(source: persiangig.com)
My action bar looks good in phones but in tablets it is not right, the tabs stick left. This picture shows what I mean, how can I put the tabs to center in tablets too?
(source: persiangig.com)
The tabs are aligned left because, in Android, the action bar is used for both navigation and Activity- or Fragment-specific actions. You don't have any in this screenshot, but menu actions that are added to the action bar will be aligned to the right.
If you must have your tabs centered for some reason, you'll have to write your own action bar. I would recommend against this, since it's a lot of work to intentionally go against user expectations. Instead, use Android's built-in action bar layout and design your app to accommodate it.

How to place both top and bottom action bar in android [duplicate]

This question already has an answer here:
How to display both normal and split ActionBar?
(1 answer)
Closed 9 years ago.
Just like the below image i want to show my icon
Click here
I want to split top and bottom action bar in both landscape and portrait mode of smartphone.
The below code is working only in portrait mode(top and bottom action bar show) but not in landscape mode bottom action bar options are showed in top action bar.
<application
android:uiOptions="splitActionBarWhenNarrow"
I just want to show both action bar in both landscape and portrait mode of smartphone like above image.
Thanks
Solution:
I have found the very nice solution for this problem, i think you will be also benefited using this solution
If you want both action bar will be separate then you should use Sherlock Action bar library. Using this library you can customize action bar as you like.
Here is the link
Thanks
You want the SplitActionBar, try this:
AndroidManifest.xml
<application
android:uiOptions="splitActionBarWhenNarrow"
http://developer.android.com/guide/topics/manifest/activity-element.html#uioptions
Add a bar at the bottom of the screen to display action items in the
ActionBar, when constrained for horizontal space (such as when in
portrait mode on a handset). Instead of a small number of action items
appearing in the action bar at the top of the screen, the action bar
is split into the top navigation section and the bottom bar for action
items. This ensures a reasonable amount of space is made available not
only for the action items, but also for navigation and title elements
at the top. Menu items are not split across the two bars; they always
appear together.

Customize system combined bar /navigation bar for Android tablet (bottom)

I would like to override (add more buttons that would take me to several activities/fragments) to the system Navigation Bar on a tablet (according to this android ui-overview it is a "Combined bar" (for tablets)
Is there a way to do this?
I couldn't find a Navigation class in the android.app package, like ActionBar.
If adding buttons to the combined/navigation bar is not possible, I think there are several options, but I'd like to explore this first:
- use the action bar on top instead
- add a bottom bar above the navigation bar (not really fine, since it would be on top of the combined bar), like they are showing here:
Action Bar
Thanks a lot,
Cristian
Is there a way to do this?
No. The only thing you can add to the system bar are Notifications, which are not meant for this sort of navigation.
If adding buttons to the combined/navigation bar is not possible, I think there are several options, but I'd like to explore this first: - use the action bar on top instead - add a bottom bar above the navigation bar (not really fine, since it would be on top of the combined bar), like they are showing here: Action Bar
If you are referring to the section titled "Layout Considerations for Split Action Bars", that is referred to as a "split action bar", and can be enabled on an <activity> via android:uiOptions="splitActionBarWhenNarrow". However, that will only take effect for -small/-normal screens in portrait orientation. Your buttons will automatically be placed in the action bar at the top of the screen in other circumstances.

Customizing Bottom Action Bar in Android

I want to use the split Action Bar - one on top, one on bottom. I know you can call it with this:
uiOptions="splitActionBarWhenNarrow"
My 2 questions are simple concepts:
I would like only two items on the bottom; one on far left, one on far right. Is this possible? It seems to be almost an overflow and pushes everything up top -- down to the bottom. Is there a way to control what items will show up on which bar?
Also, I have holo.light.darkactionbar theme. Yet, for the bottom bar, it keeps the light background AND the white text so you can not see the icons - is it possible to apply dark background like the top bar?
I would like only two items on the bottom; one on far left, one on far right. Is this possible? It seems to be almost an overflow and pushes everything up top -- down to the bottom. Is there a way to control what items will show up on which bar?
Unfortunately not. All action items will be pushed on to the bottom bar when using the split action bar. One way to get around this would be to not use the split action bar, and have a custom view at the bottom holding buttons for all the items you want at the bottom. You'd probably be able to emulate the style of an split action bar fairly well using themes.
Also, I have holo.light.darkactionbar theme. Yet, for the bottom bar, it keeps the light background AND the white text so you can not see the icons - is it possible to apply dark background like the top bar?
This sounds odd and isn't standard behaviour (both bars are dark in my app), are you using a custom theme? If you want to override this manually, define a theme with a custom android:backgroundSplit value as shown on the Android Developers website.

Categories

Resources