0
我試圖使用Fresco庫對圖像的特定角落進行圓角處理。SimpleDraweeView查看XML中的圓角
如圖所示,如何將圖像的左下角四捨五入。
這裏是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>
檢查你的問題它不清楚你想要做什麼 –
@GopalSinghSirvi我想我已經清楚了,怎麼說,它圓形圖像的左下角 –
@GopalSinghSirvi是這是錯字錯誤,我現在已經更新了。 Thnx –