In previous post I explained how to create circular floating action menu .Now I am going to explain how to increase the size of floating SubActionButton in android.
Step 1) You can set LayoutParams in the SubactionButton
LayoutParams params=new LayoutParams(80,80);
button1.setLayoutParams(params);
Step 2) Import LayoutParams
import com.oguzdev.circularfloatingactionmenu.library.FloatingActionButton.LayoutParams;
Happy Coding :)

No comments:
Post a Comment