24
Android cambia el color del botón de acción flotante
He estado tratando de cambiar el color del botón de acción flotante del material, pero sin éxito. <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" /> He intentado agregar: android:background="@color/mycolor" o mediante código: FloatingActionButton fab = (FloatingActionButton) rootView.findViewById(R.id.profile_edit_fab); fab.setBackgroundColor(Color.parseColor("#mycolor")); o fab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#mycolor"))); Pero ninguno de los anteriores funcionó. También probé …