Tagged Questions
0
votes
2answers
57 views
How to split icons in two actionbars - top and bottom?
I have total 7 icons for my android app.
Can i split them for mobile in two actionbars top and bottom? I mean 2 icons in top actionbar and remaining icons should be in bottom actionbar.
0
votes
0answers
54 views
Creating a media menu items view attached to action bar
I have put an action item on action bar, selecting which should open an option menu item view. It should be opened being attached to action bar.
I created an xml layout file.
Contents:
<?xml ...
0
votes
0answers
104 views
ShareActionProvider ActionBarSherlock - removing extra space
I am trying to use ShareActionProvider in my Android App. First I tried to use default ShareActionProvider. But unfortunately I found android not provides any method to change the color of share icon.
...
0
votes
0answers
55 views
Action Bar with ActionView for Clickevent doesn't respond
I want a popup dropdown menu with icons opened from a button in the action bar (costumized overflow menu).
Therefore i give my MenuItem an ActionView and put a OnClickListener on it for opening the ...
0
votes
1answer
88 views
android - two color Action Bar background
I'm using ActionbarSherlock. I need to create a background style for the Action Bar as image below.
I can create a plain color background style with a 9-patch image, but this seems quite complex to ...
1
vote
3answers
203 views
How to change the position of menu items on actionbar
I'm developing one application in which I have to add a custom layout on actionbar. Adding the custom layout is done, but when I'm adding the menu items on actionbar my custom layout changes it's ...
3
votes
1answer
315 views
How to get onClickListener() event on custom actionbar
I'm developing an application in which I have to get onClick() event on click of actionbar custom view. So far I'm able to achieve the following layout.
Here is my code for achieving this:
...
9
votes
3answers
450 views
remove padding around action bar left icon on Android 4.0+
I want to remove the padding around the icon on the left in the standard android 4.0+ action bar. I'm setting the icon with:
...
0
votes
1answer
265 views
Android: add shadow/windowContentOverlay below view
I've manually added a header into my layout. Obviously the shadow (defined in windowContentOverlay) is placed over the header, but I want it below the header. So how do you add a shadow below the ...
1
vote
1answer
163 views
How do you implement a fixed left pane for an Android tablet layout?
I'm porting an iPhone+iPad app to Android. It uses a Split View Controller for tablets which in Android lingo allows you to present two Activities side by side simultaneously (Edit: Android only ...
0
votes
0answers
67 views
Android Split Action Bar incorrectly rendered bottom bar on the top of the screen when used with SlidingMenu library
I have a weird case while integrating SlidingMenu with ActionBarSherlock. The bottom bar is inflated at the top of the screen under the top bar. I specified uiOptions in tag with split when narrow. ...
0
votes
2answers
120 views
Transparent action bar in actionbarshearlock activity
i am using actionbarshearlock library in my project.
I want the action bar to be transparent.
How to do it?
thanks in advance.
1
vote
4answers
351 views
How to change the color of actionbar (actionbarsherlock)
How to change the color of actionbar (actionbarsherlock) ?
I've been tried below code but no luck.
<style name="MyTheme.ActionBarStyle" parent="Widget.Sherlock.ActionBar">
<item ...
0
votes
3answers
59 views
Changing Main Activity's Title
I have an issue with changing Main Activity's name. I want to delete it. As first method I used this.getActionBar().setDisplayShowTitleEnabled(false); . It works, but before MainActivity starts title ...
1
vote
1answer
358 views
How to change ActionBar color? [duplicate]
How could I change ActionBar color?
I've implemeted this and it works but not as I want. it changes color only after activity started, so right after app launch the original bar colour is showed, and ...