我試圖將默認的FloatingActionButton
圖標更改爲add circle
圖標。我已經從material.io下載了icon ic_add_circle_white_18dp
,並將其添加到andorid項目中的drawable directory
。然而,當我嘗試使用它我的活動裏面顯示爲黑色內圖標,圖像Android中的浮動操作按鈕無法正確顯示
但是我想FAB
圖標看起來像
我FAB圖標XML是什麼樣子
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:srcCompat="@drawable/ic_add_fab"
app:elevation="8dp"
app:backgroundTint="@android:color/holo_blue_light"
app:rippleColor="@android:color/white"/>
我已經嘗試設置app:backgroundTint
VAL UE但它不影響內部圖標樣式
感謝所有幫助
這也並不apparantly工作。 –
無論如何謝謝你,你的答案幫助我達到了解決方案。查看我的答案以獲得完整的解決方案Upvote尋求幫助:) –
謝謝:) @ShubhamKhatri –