SimpleDraweeView XML中的圆角

时间:2016-04-22 07:19:03

标签: android fresco

我试图使用Fresco lib来覆盖图像的特定角落。

如图所示,如何围绕图像的左下角。

enter image description here

这是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>

3 个答案:

答案 0 :(得分:3)

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

app:roundedCornerRadius="5dp"

代替

fresco:roundedCornerRadius="5dp"

答案 1 :(得分:0)

我认为您的图片已经离开CardView区域,这就产生了问题。

您可以尝试将CardView身高调为wrap_content,然后轻轻地padding_leftpadding_bottom SimpleDraweeView

答案 2 :(得分:0)

您不需要使用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