0

how to add "more" item inside the actionbar(greendroid) ? How can i add three action menu item inside the actionbar. Anyone know how to add more and customize it .

enter image description here

John Conde
  • 217,595
  • 99
  • 455
  • 496
jacky
  • 75
  • 1
  • 2
  • 10

1 Answers1

0

You have to modificate you style.xml

<style name="CusttomTheme.ActionBar" parent="Theme.GreenDroid.NoTitleBar">
.......
<item name="gdActionBarMaxItems">5</item>
.......
</style>

In that case you insert 5 item in the actionBar

Jc Miñarro
  • 1,391
  • 10
  • 18
  • thx guy , it works...really thx for help i have another question is how to customize the location of actionbarItems ...assume that i want to put ADD button in left side... – jacky Oct 29 '12 at 05:50
  • I think that it is not posible. And it doesn't follow the design of tipical Android Application. – Jc Miñarro Oct 30 '12 at 13:02