Please view image I've called a backroundtint in xml and set its color to orange but I noticed that it has another underlying color blue how do I make the color go away and what is the reason for this ?
`<com.google.android.material.floatingactionbutton.FloatingActionButton
` android:id="@+id/contact_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:backgroundTint="@color/brand_yellow"
android:clickable="true"
android:focusable="true"
app:srcCompat="@drawable/ic_call_24"
app:tint="@color/white" />``
type here
I've tried changing the background tint="#EFB627" to just background="EFB627" and this gives me a blue defaulted color . However the the defaulted color blue has no underlying color I noticed. Can some one help me properly set a color for my fab button in xml.