File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ Version 1.3.1 (2014-10-14)
5
+ ----------------------------
6
+
7
+ - UI fix: Remove up arrow indicator margins when using ` MaterialMenuIcon ` since
8
+ you could see some extra space on the left side of the icon.
9
+ If a different margin is required, find the 'Home' view of the ActionBar and apply them
10
+ (example for stock ActionBar) :
11
+
12
+ ``` java
13
+ View view = activity. getWindow(). getDecorView(). findViewById(
14
+ resources. getIdentifier(" android:id/home" , null , null )
15
+ );
16
+ ViewGroup . MarginLayoutParams params = (ViewGroup . MarginLayoutParams ) view. getLayoutParams();
17
+ params. leftMargin = someMargin;
18
+ ```
19
+
20
+ - ` MaterialMenuBase ` abstraction improvements
21
+
4
22
Version 1.3.0 (2014-10-12)
5
23
----------------------------
6
24
Original file line number Diff line number Diff line change 1
- VERSION_NAME =1.3.0
2
- VERSION_CODE =10
1
+ VERSION_NAME =1.3.1
2
+ VERSION_CODE =11
3
3
GROUP =com.balysv.materialmenu
4
4
5
5
POM_NAME =Material Menu
You can’t perform that action at this time.
0 commit comments