jinhuizxc / RoundImageView

ImageView圆角样式

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

ImageView圆角样式


Languages

Language:Java 100.0%