Is there a way to reduce the spacing between the Action Item Icons on Action Bar?

后端 未结 8 1899
渐次进展
渐次进展 2020-11-29 23:49

I wanted to reduce the spacing bettween Action Item icons added to the ActionBar. Is there a way we can do this?

8条回答
  •  悲哀的现实
    2020-11-30 00:17

    For SDK versions 17+ you should use paddingStart and paddingEnd properties, if you have minSdkVersion < 17 you must use different styles for each version, like this:

    res/values/styles.xml :

    @style/ActionButtonStyle
    
    
    

    res/values-v17/styles.xml :

    @style/ActionButtonStyle
    
    
    

提交回复
热议问题