Skip to content

Latest commit

 

History

History
37 lines (33 loc) · 1.34 KB

File metadata and controls

37 lines (33 loc) · 1.34 KB

RoundImageView

##Usage

<com.vincent.roundimageview.view.RoundImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:src="@mipmap/image"
    app:type="circle" />

<com.vincent.roundimageview.view.RoundImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    app:radius="20dp"
    app:src="@mipmap/image"
    app:type="round" />

<com.vincent.roundimageview.view.RoundImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    app:radius="35dp"
    app:src="@mipmap/image"
    app:type="round" />
##Example ![Running Effect](https://github.com/lichao315/RoundImageView/blob/master/roundimageview/example.png)