“FloatingActionButton Bildfarbe” Code-Antworten

FloatingActionButton Bildfarbe

app:tint="@android:color/white"
Sudarshaana

FloatingActionButton Bildfarbe


//get the drawable
Drawable myFabSrc = getResources().getDrawable(android.R.drawable.ic_input_add);
//copy it in a new one
Drawable willBeWhite = myFabSrc.getConstantState().newDrawable();
//set the color filter, you can use also Mode.SRC_ATOP
willBeWhite.mutate().setColorFilter(Color.WHITE, PorterDuff.Mode.MULTIPLY);
//set it to your fab button initialized before
myFabName.setImageDrawable(willBeWhite);

Mushy Mantis

Ähnliche Antworten wie “FloatingActionButton Bildfarbe”

Fragen ähnlich wie “FloatingActionButton Bildfarbe”

Weitere verwandte Antworten zu “FloatingActionButton Bildfarbe” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen