I have this bottom action bar style
I want to design like this (left , center, right) with background color blue or red
this is the menu >
Here you can download the needed icons: https://www.google.com/design/icons/index.html
The distance between the icons can you make with a custom android:actionButtonStyle like:
- @style/ActionButtonStyle
And the background color:
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#FF0000")));