XML 中的 SimpleDraweeView 圆角

SimpleDraweeView round corners in XML

我正在尝试使用 Fresco 库对图像的特定角进行圆角处理。

如图所示,如何将图片的左下角做圆角。

这里是 xml:

<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardview"
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_marginBottom="4.0dp"
android:layout_marginLeft="8.0dp"
android:layout_marginRight="8.0dp"
android:layout_marginTop="4.0dp"
card_view:cardCornerRadius="5dp"
card_view:cardPreventCornerOverlap="false"
>

<com.facebook.drawee.view.SimpleDraweeView xmlns:fresco="http://schemas.android.com/apk/res-auto"
    android:id="@+id/image1"
    android:layout_width="145dp"
    android:layout_height="180dp"
    fresco:placeholderImage="@color/pink"
    fresco:roundedCornerRadius="5dp"
    fresco:roundBottomRight="false"
    fresco:roundTopRight="false"
    fresco:roundBottomLeft="true"/>

</android.support.v7.widget.CardView>

我认为您的图片超出了您的 CardView 区域,这会造成问题。

您可以尝试将您的 CardView 身高设为 wrap_content 并将轻微的 padding_leftpadding_bottom 设为 SimpleDraweeView

如果您的父布局中有 xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:fresco="http://schemas.android.com/tools" 使用

app:roundedCornerRadius="5dp"

改为

fresco:roundedCornerRadius="5dp"

您不需要使用 CardView

根据您的要求使用以下行:

fresco:roundTopLeft="true"  
fresco:roundTopRight="false"
fresco:roundBottomLeft="false"
fresco:roundBottomRight="true"
fresco:roundTopStart="false"
fresco:roundTopEnd="false"
fresco:roundBottomStart="false"
fresco:roundBottomEnd="false"

对于reference