Estou tentando alterar a cor do botão de ação flutuante do material, mas sem sucesso.
<android.support.design.widget.FloatingActionButton
android:id="@+id/profile_edit_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:clickable="true"
android:src="@drawable/ic_mode_edit_white_24dp" />
Eu tentei adicionar:
android:background="@color/mycolor"
ou via código:
FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab);
fab.setBackgroundColor(Color.parseColor("#mycolor"));
ou
fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor")));
Mas nenhuma das opções acima funcionou. Eu também tentei as soluções na pergunta duplicada proposta, mas nenhuma delas funciona; o botão permaneceu verde e também se tornou um quadrado.
PS: Também seria bom saber como adicionar efeito cascata, também não conseguia entender isso.