“Warna gambar floatingactionButton” Kode Jawaban

Warna gambar floatingactionButton

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

Warna gambar floatingactionButton


//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

Jawaban yang mirip dengan “Warna gambar floatingactionButton”

Pertanyaan yang mirip dengan “Warna gambar floatingactionButton”

Lebih banyak jawaban terkait untuk “Warna gambar floatingactionButton” di Java

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya