/RoundImageView

Simple Android Library for image rounding

Primary LanguageKotlin

RoundImageView

Simple Android Library for image rounding

Sample

// circle Image View
<ir.smr.kazemi.roundimageview.RoundImageView
    android:layout_width="wrap_content"
    android:layout_marginTop="58dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:src="@mipmap/illustration" />

// Rectangle Image View with round corner
<ir.smr.kazemi.roundimageview.RoundImageView
	android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_margin="8dp"
    android:src="@mipmap/illustration"
    app:radius="30dp"
    app:type="rect" />

XML Attributes

Name Description
radius radius of corners and Circle
type rect / cir