Skip to content

1.3.1

Compare
Choose a tag to compare
@balysv balysv released this 14 Oct 09:48
· 59 commits to master since this release
  • 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