RoundedImageView 图片圆角

先插入第三方库:implementation 'com.makeramen:roundedimageview:2.3.0'

之后

<com.makeramen.roundedimageview.RoundedImageView
       android:id="@+id/iv_beauty"
       android:layout_width="120dp"
       android:layout_height="120dp"
       android:layout_centerHorizontal="true"
       android:src="@drawable/data"
       app:riv_corner_radius_bottom_left="10dp"    
       app:riv_corner_radius_bottom_right="10dp"
       app:riv_corner_radius_top_left="10dp"         
       app:riv_corner_radius_top_right="10dp" />    
 
 
 app:riv_corner_radius_top_left="10dp"          //左上角弧度
 app:riv_corner_radius_top_right="10dp"        //右上角弧度
 app:riv_corner_radius_bottom_left="10dp"    //左下角弧度
 app:riv_corner_radius_bottom_right="10dp"  //右下角弧度
 
posted @ 2023-06-25 19:08  十指扣  阅读(79)  评论(0)    收藏  举报
Live2D