Croutonix

Results 8 comments of Croutonix

You can use `fab:menu_labels_position="left|right"`

Use `fab:menu_backgroundColor="#CCFFFFFF"`.

If you want to do this for RecyclerView, you can use this: ```java private static final int FAB_VISIBILITY_TOGGLE_DIFF = 100; private int totalScrollInDir; recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() { @Override public void onScrolled(RecyclerView...

Normally there would be two ways of doing it: ```java FloatingActionButton fab= findViewById(R.id.fab); fab.setColorFilter(color, PorterDuff.Mode.SRC_IN); ``` That doesn't work. You must use this instead: ```java FloatingActionButton fab = findViewById(R.id.fab); Drawable...

Yes, because `FloatingActionButton` extends `android.widget.ImageButton` and not the support library equivalent. The solution around this is to tint your own icons by code...

See my comment on issue #52. To set a label on the menu button you can use `fab:menu_fab_label="Compose"`. If you want to also change the color, you can add that...

Try this, it worked for me; ```java fabMenu.setOnMenuButtonClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if (fabMenu.isOpened()) { // Menu is opened and menu button was clicked } fabMenu.toggle(true);...

Yes sorry, but there was a problem with, `fabMenu.getIconToggleAnimatorSet()` returns null and not the default animation. You could always change the icon in the click listener like this: ```java if...