Skip to content

Commit b10d15b

Browse files
committed
2 parents e0ac7d7 + c9a4d78 commit b10d15b

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
[![](https://jitpack.io/v/BrotherV/Floating-ArcMenu.svg)](https://jitpack.io/#BrotherV/Floating-ArcMenu)
44
# Floating-ArcMenu
55
**A prety menu for all applications**
6+
### New Features in v1.0.9.8
7+
* Set FloatActionButton icon size programmatically
8+
* Change FloatActionButton icon size by changing FloatActionButton size
9+
* Set ArcMenu icon size programmatically
10+
* New "setOnShrinkExpandClickListener" for FloatActionButton which can add new animation to fab.
11+
12+
``` java
13+
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
14+
fab.setOnShrinkExpandClickListener(fab, new View.OnClickListener() {
15+
@Override
16+
public void onClick(View v) {
17+
fab.setIconSize(i ? 32 : 16); // set fab icon size
18+
i = !i;
19+
}
20+
});
21+
```
22+
623

724
Android floating arc menu which reacts on scrolling events. Becomes visible when an attached target is scrolled up and invisible when scrolled down.
825

@@ -89,8 +106,8 @@ for (int i = 0; i < itemCount; i++) {
89106
});
90107
}
91108
```
92-
### New Features in v1.0.9.5
93-
In this version user will able to add or delet or replace munu child or user can removeAllchild from the menu and initialize it again, also user will able to access OnClickListener and user can change menu icon programmatically. even user will able to add 2 Drawable icons, one for close form and one for open and menu automatically change the icons by order.
109+
### Another Features
110+
User will able to add or delet or replace munu child or user can removeAllchild from the menu and initialize it again, also user will able to access OnClickListener and user can change menu icon programmatically. even user will able to add 2 Drawable icons, one for close form and one for open and menu automatically change the icons by order.
94111
![Demo](art/double_icon.gif)
95112
``` java
96113
arcMenu.removeAllChild(); // This method will remove all the children

0 commit comments

Comments
 (0)