Skip to content

『使用中』 圆角头像,矩形头像,支持自定义圆角角度

Notifications You must be signed in to change notification settings

dvlp-org/DImageView

Repository files navigation

DImageView

Configuration

Step 1.Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        implementation 'com.github.dvlp-org:DImageView:Tag'
}

Step 3. Add layout xml

<news.dvlp.dview.CircleImageView
    android:layout_margin="5dp"
    android:layout_width="150dp"
    android:layout_height="150dp"
    app:border_color="#000000"
    app:border_width="2dp"
    android:src="@color/###"/>

<news.dvlp.dview.RoundImageView
    android:layout_margin="5dp"

    android:layout_width="150dp"
    android:layout_height="150dp"
    app:type="circle"
    android:src="@color/###"/>

--------------------------------------------attrs------------------------------------------------------------

 <declare-styleable name="RoundImageView">
    <attr name="type" format="enum">
        <enum name="circle" value="1"/>
        <enum name="round" value="2"/>
    </attr>
    <attr name="radius" format="dimension"/>
</declare-styleable>

<declare-styleable name="CircleImageView">
    <attr name="border_width" format="dimension" />
    <attr name="border_color" format="color" />
</declare-styleable>

--------------------------------------------attrs------------------------------------------------------------

About

『使用中』 圆角头像,矩形头像,支持自定义圆角角度

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages