material-menu v1.3.1 Release Notes

Release Date: 2014-10-14 // over 9 years ago
    • ๐Ÿšš UI fix: Remove up arrow indicator margins when using MaterialMenuIcon since ๐Ÿ‘€ you could see some extra space on the left side of the icon. If a different margin is required, find the 'Home' view of the ActionBar and apply them (example for stock ActionBar) :
    View view = activity.getWindow().getDecorView().findViewById(
        resources.getIdentifier("android:id/home", null, null)
    );
    ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
    params.leftMargin = someMargin;
    
    • MaterialMenuBase abstraction improvements