参照GitHub地址:
https://github.com/hdodenhof/CircleImageView
- 使用
compile 'de.hdodenhof:circleimageview:2.1.0' //导入第三方的依赖
- 布局中使用
<de.hdodenhof.circleimageview.CircleImageView
android:clickable="true"
android:id="@+id/it"
android:layout_width="70dp"
android:layout_height="73dp"
android:src="@drawable/xlj"
android:layout_centerInParent="true"
/>
由此可见,和一般的ImageView使用起来没有区别,自己会给你裁剪
网友评论