自学内容网 自学内容网

android studio实现圆形图片

添加依赖

//圆形图片
implementation 'de.hdodenhof:circleimageview:3.1.0'

xml布局

    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/cirvleview"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_centerInParent="true"
        android:src="@mipmap/ic_launcher_round"
        tools:ignore="MissingConstraints" />


原文地址:https://blog.csdn.net/susu1083018911/article/details/145060667

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!