android圆形circleImageview库的使用

来源:互联网 发布:河南房卡麻将源码 编辑:程序博客网 时间:2024/06/04 21:15

地址:https://github.com/hdodenhof/CircleImageView

Gradle

dependencies {    ...    compile 'de.hdodenhof:circleimageview:2.1.0'}

Usage

<de.hdodenhof.circleimageview.CircleImageView    xmlns:app="http://schemas.android.com/apk/res-auto"    android:id="@+id/personal_avatar"    android:layout_width="56dp"    android:layout_height="56dp"    android:layout_gravity="right"    android:src="@drawable/my_login"    app:civ_border_width="1dp"    app:civ_fill_color="@color/gray"    app:civ_border_color="@color/white" />

0 0