2016-04-22 47 views
0

我試圖使用Fresco庫對圖像的特定角落進行圓角處理。SimpleDraweeView查看XML中的圓角

如圖所示,如何將圖像的左下角四捨五入。

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> 
+0

檢查你的問題它不清楚你想要做什麼 –

+0

@GopalSinghSirvi我想我已經清楚了,怎麼說,它圓形圖像的左下角 –

+0

@GopalSinghSirvi是這是錯字錯誤,我現在已經更新了。 Thnx –

回答

0

我覺得你的形象是走出去的CardView區,這是創造問題。

您可以通過給你的CardView高度wrap_content試用,並給予輕微padding_leftpadding_bottomSimpleDraweeView

+0

感謝Rohit,它工作 –