- 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