The ActionBar is Android's window feature that identifies the application and user location, and provides user actions and navigation modes.
0
votes
1answer
15 views
android 3.0+ action bar keep background when styling
I'm developing an App for Android 3.0+ and I want to personalize the action bar by removing the title, which I can accomplish, my problem is that I also lose the background on the action bar, I would ...
1
vote
0answers
29 views
Make ActionBar overlay using ActionBarSherlock
The last few days I've been doing great stuff in development, but I've seem to have hit a wall on something probably stupid simple. It's annoying. I was hoping I could get some help.
What I'm trying ...
0
votes
1answer
13 views
Add Abort button to ActionMode
You all know the normal ActionMode from the ActionBar in Android. I think the questions says it all: How can I add a second button right after the "Done" button with abort and an X icon?
I use ...
0
votes
0answers
16 views
Replicating actionbar embedded tabs
I have designed an app, that replicates the way Android embeds tabs in the actionbar, when there is room for it. In the two images below, you can see how the bottom part is in two panes in portrait ...
0
votes
1answer
16 views
Cannot get rid of custom view in ActionBar until screen orientation change on fragments
I have found a solution. Very interesting what all of my tests have discovered. Cannot answer for another few hours because of this new account. Will post all of my details when SO lets me.
I am ...
0
votes
1answer
7 views
How to use ActionBar features from a fragment?
In a fragment code I'd like to make ActionBar API calls such as
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
Is it a good idea to hold a reference to the activity in the fragment's ...
0
votes
0answers
19 views
Entering Google Maps Fragment from a Action Bar
I've been stuck with the following issue for the last 3 weeks. I'm building an Android app which has a starting page, then with a Action Bar displaying several options. All static Android Activities ...
0
votes
1answer
34 views
Change Action bar title for each tab swipe on android
I have set up Action bar with swipe tabs using ActionBarSherlock and Fragments.
I want to have different Action bar title for each tab. And it would be great if i could set up image instead of the ...
0
votes
0answers
21 views
invalidateOptionsMenu() Android 4.0.3 HTC Desire C bug
I am trying to update action bar colour in onResume() calling invalidateOptionsMenu().
It works for Android 2.x (supportInvalidateOptionsMenu()) and Android 4.2.2 Galaxy Nexus.
There is an issue on ...
1
vote
1answer
23 views
android project with sherlock actionbar git-checkout and go possible?
I'm working with several android/iOS projects that are being modified by different developers, designers, QA people and even Clients.
With iOS projects is so much easy to have the whole project ...
0
votes
1answer
19 views
Tabs go to top if i set customView of ActionBar on Android
I add tabs and viewpager to my project.
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
Everything is perfect until i set custom view of actionBar:
...
-1
votes
0answers
42 views
How to enlarge Android app's logo in action bar?
I'm trying to enlarge the app logo in the action bar of my app. I've tried enlarging the resource but it looks like the ImageView shrinks the image to a set size.
Does anybody know where and how to ...
0
votes
2answers
39 views
How do I get the default background color in ActionBarSherlock?
I am using the ActionBar from the ActionBarSherlock library. I am able to set the background color of my action bar using the ActionBar.setBackgroundDrawable(Color) method. After changing the ...
0
votes
0answers
31 views
Slide menu android
I'm trying to replicate the sliding menu has been used in linked in. but the problem is I can't move the layer to the parent which doesn't have the action bar.
xml file looks like this
<?xml ...
3
votes
1answer
54 views
Android Navigation Drawer over the tabs
I am using the new navigation drawer available from the support library. When using the drawer along with tabs, the drawer menu is getting displayed below the tabs as shown below. How can i make sure ...
0
votes
1answer
29 views
Customize Navigation Tabs in Android Action bar
I have an Android app that Im making now using one of the default templates: I believe it was Fixed Tabs + Swipe.
A screenshot of the current navigation bar is below (I marked the navigation bars in ...
0
votes
1answer
14 views
Monodroid ActionBar show menubutton on Galaxy
I need to show the menu button, in the ActionBar, even if it has a hardware key.
I found this in android:
try {
ViewConfiguration config = ViewConfiguration.get(this);
Field ...
0
votes
1answer
15 views
Accesss the content form customview in anroid
I am using the customview to add a xml in my Actionbar in ICS..Here is the code...I want to access the xml contents
ActionBar actionBar = getActionBar();
actionBar.show();
...
1
vote
1answer
24 views
Action Bar - items with text at bottom of the icon
What I want to achieve is following type of action bar:
Is there an easy way of doing this? I mean is there a theme or some method?
Any help is welcome.
Thanks in advance!
0
votes
1answer
14 views
How does android style cascade?
I'm new to android development. And i'm confusing about the cascading mechanism of android style. If i want to set the textColor of a actionBar. I need to do it like this.
<style ...
0
votes
1answer
41 views
Fragments, ActionBar and Back button
How do I solve the following problem
1) FragmentActivity load with ActionBar and a homescreen fragment
2) When user selects "Item1" from ActionBar another Fragment is displayed.
3) User then presses ...
0
votes
2answers
17 views
Static and dynamic Items in Actionbar
My app contains a master/detail flow. If I click a ListViewItem a new Fragment is displayed in the detail flow whith its own menu items in the actionbar. I change them with:
@Override
public void ...
0
votes
0answers
9 views
How to handle menu attributes in custom ActionView?
I have a ActionBar, and I'm creating custom ActionView:
<item
android:id="@+id/refresh"
android:actionViewClass="com.my.package.RefreshView"
android:icon="@drawable/ic_action_refresh"
...
0
votes
0answers
20 views
ActionBar Intent
I have made Android ActionBar and I have three things in there Date and two buttons. My button fuction will be to get user to another xml file, so I need to create Intent in my MainActity:
Button add ...
0
votes
0answers
21 views
Set contentDescription for ActionBar's up button
I'm trying to customize the "Navigate up" default contentDescription that is associated with the up button of the ActionBar (I'm using ActionBarSherlock).
From ActionBarView's source:
public void ...
0
votes
0answers
26 views
Android - how to invoke onNavigationItemSelected when spinner item is re-selected
I am using the spinner in the action bar for navigation. The problem is, the onNavigationItemSelected is not called when the selected item is the same as the previously selected one.
I have looked at ...
0
votes
1answer
61 views
Back and Nav Up have different results
I'm having an issue with activity navigation and I can't figure out what I'm doing wrong.
I have a MainActivity and a SettingsActivity but using the Back and Up (on the action bar) have two different ...
0
votes
0answers
21 views
Android action bar overlay & hidden by default in xml
I need to have the action bar hidden on application start. Then, after some user action, it has to show up again overlaying the content. Currently I turn it off in a custom style by setting <item ...
0
votes
1answer
35 views
Change Android ActionBar overflow icon in code
Is it possible to change overflow icon in code?
I read this solution: Changing overflow icon in the action bar
But I need to make it in code, to select white or grey style during runtime.
Is it ...
0
votes
0answers
20 views
ActionBarSherlock actionLayout not triggering click event
I trying to attach an event listener to a custom button in my action bar, but the click event triggers no action. Can someone please help me to debug.
R.menu.address_menu
<item
...
0
votes
0answers
25 views
Invert the split action bar
I just modified my action bar on my application to use the Split ActionBar functionality described here:
http://developer.android.com/guide/topics/ui/actionbar.html#SplitBar
I created a draft custom ...
0
votes
0answers
36 views
Previous fragment visible under the new fragment
I have a tab + ViewPager layout and in one of these tabs I have a list view. When I replace that list fragment upon the onclick I can still see the old fragment under the new fragment. See:
...
0
votes
1answer
23 views
Possible to inflate android spinner layout extended by ActionBarSherlock?
Is it possible to inflate Textview from @android:id/text1 ?
I don't want to create own layout, I would like just get a little modified text.
Here is my code:
First, I created variable to store data
...
0
votes
0answers
21 views
Button Intent in ActionBar
I am making button in ActionBar which would open me another class.. This is my MainActivity code:
package com.example.menu;
import android.os.Bundle;
import android.app.ActionBar;
import ...
1
vote
1answer
29 views
Android Date in ActionBar
I am making ActionBar in Android Development. And I want to put in ActionBar this DateFormat code :
android.text.format.DateFormat.format("yyyy-MM-dd hh:mm:ss", new java.util.Date());
How I can put ...
0
votes
1answer
23 views
Android Fragment Unable to go back
I have an app that uses fragments with tabs/viewpager
[Tab 1][Tab 2][Tab 3]
Tab2 has a ListView and in the onClick method of the ListView I am showing a detail view with the following code
...
2
votes
2answers
43 views
Actionbar on Android 2.3.6
I have been asked to look at getting an existing app working on an Android phone running Andrdoid 2.3.6 ( API 10? ).
The app currently used the ICS ActionBar, is there any way of doing this with API ...
1
vote
0answers
24 views
Android artifacts, Action bar
I have no idea why there are arifacts on ActionBar.
It looks like that:
Application style defined in Manifest:
android:style/Theme.Holo
in Activity:
ActionBar ab = getActionBar();
...
0
votes
1answer
28 views
MenuItem showing up on a bottom bar
When I inflate the menu, some of the item are showing up in the bottom bar, while the others show up in the usual options menu of Android 2.
I tried with android:uiOptions="none" in the manifest, but ...
1
vote
1answer
42 views
Android View pager & List fragment
I have successfully gotten a 3 tab + pager implemented.
One of these tabs is a List fragment, how would I update the fragment with the onclick method, and still be able to keep the tabs??
1
vote
1answer
31 views
Optional menu item after a submenu not displayed
I have a strange problem on an ActionBar I am setting up on a ListActivity.
Here is the XML I use to setup my menu:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item ...
0
votes
1answer
29 views
Menu button with NoActionBar
I have Activity with Theme.Holo.Light.NoActionBar. My manifest setup: targetSdkVersion=17. Menu button is not showing. How I can show menu button at bottom of my Nexus4?
0
votes
1answer
45 views
difficulty understanding ActionBar and ifRoom
private void setUpActionBar() {
// Make sure we're running on Honeycomb or higher to use ActionBar APIs
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
ActionBar actionBar = ...
0
votes
1answer
70 views
android action bar sherlock show action text and icon in split view
Need to create button with text in bottom action bar in "split" mode.
Here is code from Sherlock examples:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
menu.add("Save")
...
-3
votes
1answer
43 views
Customizing ActionBar Sherlock [closed]
I customize my action bar to be equal to Google Maps. I would like to add an icon on my list navigation.
2
votes
1answer
168 views
New Official Icon for Android Navigation Drawer
How can I use Google's new icon? Is this a resource? Or something you can add in code, such as:
actionBar.setDisplayHomeAsUpEnabled(showHomeAsUp)
Here is picture from dev site (note: It's the "3 ...
0
votes
0answers
12 views
Android Actionbar set width to the tabs
Currently I'm busy on a WHMCS app for my company. As navigation I want to use the Tab functionality in the actionbar.
However, how can you edit the width of a tab? I need 5 together on one screen ...
0
votes
1answer
29 views
how to combine ListView and actionBar
I'm want to have a layout containg an actionBar and a listview of names.
The point is that when i try to combine both action bar and listview i get something wired:
the action bar is shown every each ...
0
votes
2answers
17 views
unprefixed attribute is giving error in style.xml
I am using actionbar sherlock for compatibility with android version >= 8
and while using the code it gives me error
error: Error: No resource found that matches the given name: attr ...
0
votes
1answer
20 views
What can I do in Android Honeycomb for MenuItem.isActionViewExpanded() and MenuItem.collapseActionView()
The methods MenuItem.isActionViewExpanded() and MenuItem.collapseActionView() were added in Android API version 14 (Ice cream sandwich), so they're not available in Android API versions 11-13 ...






