When I set a color to my fab, it looks like so:
My layout xml:
Use this code in your xml
app:borderWidth="0dp"
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add"
android:layout_marginRight="20dp"
app:fabSize="normal"
android:elevation="@dimen/fab_elevation"
android:background="#000000"
app:borderWidth="0dp"
android:stateListAnimator="@animator/fab_anim"
android:layout_gravity="center_horizontal"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true" />
Use
app:backgroundTint="@android:color/holo_green_dark"
(for example) to set color of fab. Result below. Taken from this -tested- code snippet.
Also edit : "strange green color" should come from your accent color. That's the color fab takes by default.
simply setting app:borderWidth="0dp" resolve the issue.
just add app:borderWidth="0dp"