我有以下 ViewHolder 布局 -
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/transparent">
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/row_product_page_ghost_floating_action_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_marginTop="10dp"
android:alpha="0.5"
android:background="@color/grey_text_cart"
android:backgroundTint="@color/grey_text_cart"
android:elevation="1dp"
android:scaleType="center"
android:src="@drawable/user_icon"
app:backgroundTint="@color/white"
app:fabCustomSize="50dp"
app:fabSize="auto"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:maxImageSize="30dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
override fun onBindViewHolder(holder: ProductPageGhostHolder, position: Int) {
holder.floatingGhostButton.setOnClickListener {
listener.onClick(position)
}
val jid = models[position].JID
val roster = VerteDatabaseManager.ROSTER.getRoster(jid)
if (roster != null && roster.vcard != null) {
Picasso.get().load(roster.vcard.image).into(holder.floatingGhostButton)
}
}
所以我希望每个 FloatingActionButton 都有自己的图像,该图像四舍五入为 50 像素,并且没有任何其他背景。这是我在 UI 中的当前结果 -
正如您在第二个浮动栏(来自 RV 的那个)中看到的那样,图像不像它的背景那样是圆形的,它的圆形背景本身也有另一个背景。
我该如何解决?