Skip to content

Carolinewly/AvatarImageView

 
 

Repository files navigation

AvatarImageView

you can set any style avatar by this view .

The effect:

Usage

Step 1

Copy AvatarImageView.java to your project.

Step 2

use like this.

<cn.fanrunqi.avatarimageview.AvatarImageView
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@drawable/oval_shape"
            <!--android:background="@drawable/bg_a"-->
            android:src="@drawable/c"
            />

"android:background" attribute is Use to define the shape of the image.

you can use the shape.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    android:useLevel="false">
    <solid android:color="#fff"/>
    <size android:width="100dp"
          android:height="100dp"/>

</shape>

or ,use a picture like xxx.png

"android:src" attribute is Use to define the picture you want to show.

About

an avatar imageview can set any style

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 100.0%