我试图使用Fresco lib来覆盖图像的特定角落。
如图所示,如何围绕图像的左下角。
这是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>
答案 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_left
和padding_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"