Skip to content

cytlgb5222/ShapedImageView

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ShapedImageView

  • 简洁,不到100行代码
  • 支持圆形 圆角矩形
  • 支持TransitionDrawable

Screenhots

Usage

dependencies

compile 'cn.gavinliu.android.lib:ShapedImageView:0.4'

attr

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <declare-styleable name="ShapedImageView">
        <attr name="shape_mode" format="enum">
            <enum name="round_rect" value="1" />
            <enum name="circle" value="2" />
        </attr>
        <attr name="round_radius" format="dimension" />
    </declare-styleable>

</resources>

Circle

<cn.gavinliu.android.lib.shapedimageview.ShapedImageView
    android:id="@+id/image1"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:layout_centerInParent="true"
    app:shape_mode="circle" />

Round Rect

<cn.gavinliu.android.lib.shapedimageview.ShapedImageView
    android:id="@+id/image2"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:layout_centerInParent="true"
    app:round_radius="20dp"
    app:shape_mode="round_rect" />

TODO

  • Support Any Shape (SVG to PathShape)

License

MIT

About

Android Rounded, Circle ... ImageView

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%