Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 834 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 834 Bytes

RoundImageView

Usage

xmlns:app="http://schemas.android.com/apk/res-auto"
<com.zcw.widget.CircleImageView
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:clickable="true"
    android:src="@drawable/image1"
    app:borderColor="#fff"
    app:borderWidth="2dp"
    app:hoverColor="#22000000" />


<com.zcw.widget.RoundImageView
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:clickable="true"
    android:src="@drawable/image1"
    app:borderColor="#fff"
    app:borderRadius="6dp"
    app:borderWidth="2dp" />

Sample